diff options
Diffstat (limited to 'test/core/RegistryTest.cpp')
-rw-r--r-- | test/core/RegistryTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/RegistryTest.cpp b/test/core/RegistryTest.cpp index 1a23139..4e8fc6a 100644 --- a/test/core/RegistryTest.cpp +++ b/test/core/RegistryTest.cpp @@ -31,9 +31,9 @@ namespace ousia { namespace { class TestParser : public Parser { protected: - Rooted<Node> doParse(CharReader &reader, ParserContext &ctx) override + void doParse(CharReader &reader, ParserContext &ctx) override { - return new Node{ctx.getManager()}; + // Stub } }; } |