diff options
Diffstat (limited to 'libjsonpp/jsonFlexLexer.h')
-rw-r--r-- | libjsonpp/jsonFlexLexer.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libjsonpp/jsonFlexLexer.h b/libjsonpp/jsonFlexLexer.h index 6ea1336..c95636e 100644 --- a/libjsonpp/jsonFlexLexer.h +++ b/libjsonpp/jsonFlexLexer.h @@ -9,10 +9,9 @@ namespace json { class jsonFlexLexer : public yyFlexLexer { public: - jsonFlexLexer(std::istream &, const std::string & enc); + jsonFlexLexer(std::istream &, const std::string & enc, Value & v); int yylex(); - ValuePtr getValue() const; void LexerError(const char * msg) override; void BeginObject(); @@ -29,7 +28,6 @@ namespace json { std::string encodeBuf() const; std::string buf, name, encoding; - std::stack<ValuePtr> values; typedef std::function<Value *(const Value &)> AcceptValue; std::stack<AcceptValue> acceptValues; |