1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-24 19:40:12 +00:00

move to c++11 remove console writes

This commit is contained in:
Miodrag Milanovic
2018-06-28 13:32:06 +02:00
parent 9347c8742d
commit 9cf23d1010
6 changed files with 28 additions and 96 deletions

View File

@@ -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: