diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-04-03 23:34:42 +0200 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2016-04-25 22:19:32 +0200 |
commit | 44d3885020d6eac4a625d647548dddbac44a2efc (patch) | |
tree | a806644f2adbfa38a18c74b9cc79ee5b81e39da3 /src/core/parser/stack | |
parent | ddc27d3798ed01f5ca3c5f88adbb6313e4078141 (diff) |
Remove unneeded variable
Diffstat (limited to 'src/core/parser/stack')
-rw-r--r-- | src/core/parser/stack/Stack.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/core/parser/stack/Stack.cpp b/src/core/parser/stack/Stack.cpp index 0241118..88ddeee 100644 --- a/src/core/parser/stack/Stack.cpp +++ b/src/core/parser/stack/Stack.cpp @@ -296,12 +296,6 @@ static LoggableException buildInvalidCommandException( class StackImpl : public HandlerCallbacks { private: /** - * Reference at an implementation of the ParserCallbacks instance to which - * certain handler callbacks are directed. - */ - ParserCallbacks &parser; - - /** * Reference at the parser context. */ ParserContext &ctx; @@ -546,11 +540,7 @@ public: StackImpl::StackImpl(ParserCallbacks &parser, ParserContext &ctx, const std::multimap<std::string, const State *> &states) - : parser(parser), - ctx(ctx), - states(states), - tokenRegistry(parser), - dataReader(nullptr) + : ctx(ctx), states(states), tokenRegistry(parser), dataReader(nullptr) { // If the scope instance is not empty we need to deduce the current parser // state |