diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 00:37:51 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 00:37:51 +0100 |
commit | 77ae5cbb14aa375ffe33d41921d84028a453b121 (patch) | |
tree | 0f4031c10f6fce86db0798462e4992815e6bb069 /test | |
parent | 7b6c47dca58a1aceb8fea2b66c3e0aa302ade67a (diff) |
Fixed order in which elements in StandaloneParserContext are created/freed (to prevent Manager empty assertion to fail)
Diffstat (limited to 'test')
-rw-r--r-- | test/core/parser/StandaloneParserContext.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/parser/StandaloneParserContext.hpp b/test/core/parser/StandaloneParserContext.hpp index 64a245f..78d148d 100644 --- a/test/core/parser/StandaloneParserContext.hpp +++ b/test/core/parser/StandaloneParserContext.hpp @@ -26,10 +26,10 @@ namespace parser { struct StandaloneParserContext : public ParserContext { private: + Manager manager; Logger logger; Scope scope; Registry registry; - Manager manager; public: StandaloneParserContext() |