aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/python-console/ParseHelper.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/python-console/ParseHelper.h')
-rw-r--r--3rdparty/python-console/ParseHelper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/python-console/ParseHelper.h b/3rdparty/python-console/ParseHelper.h
index 8824fc39..d01e2627 100644
--- a/3rdparty/python-console/ParseHelper.h
+++ b/3rdparty/python-console/ParseHelper.h
@@ -25,7 +25,7 @@ THE SOFTWARE.
#include <string>
#include <vector>
#include <list>
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include "ParseMessage.h"
class ParseListener;
@@ -120,7 +120,7 @@ protected:
// TODO: Create a ContinuationParseState to handle this
bool inContinuation;
std::vector< ParseListener* > listeners;
- std::vector< boost::shared_ptr< ParseState > > stateStack;
+ std::vector< std::shared_ptr< ParseState > > stateStack;
std::vector< std::string > commandBuffer;
public: