diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-28 13:32:06 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-28 17:57:26 +0200 |
commit | 9cf23d101041d1e990f57d78e4712226b8a449c7 (patch) | |
tree | cf94b24666b7e5e935a1613cbdfafb3ca956bc1b /3rdparty/python-console/ParseHelper.h | |
parent | 9347c8742d8faf8b39fea4cbbe13b7a1d2440c18 (diff) | |
download | nextpnr-9cf23d101041d1e990f57d78e4712226b8a449c7.tar.gz nextpnr-9cf23d101041d1e990f57d78e4712226b8a449c7.tar.bz2 nextpnr-9cf23d101041d1e990f57d78e4712226b8a449c7.zip |
move to c++11 remove console writes
Diffstat (limited to '3rdparty/python-console/ParseHelper.h')
-rw-r--r-- | 3rdparty/python-console/ParseHelper.h | 4 |
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: |