diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-01-22 20:59:15 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-01-22 20:59:15 +0100 |
commit | f7cdbb6635d62a0347be579cb8dd6badec22956d (patch) | |
tree | 51e779573e62a2d29234ae35ff802de3e4f6b5e8 /test-lexer.cpp | |
parent | 3eff766ce1cbed5d3a3c3158614e6741cc1b7f2a (diff) |
Namespace Gram
Diffstat (limited to 'test-lexer.cpp')
-rw-r--r-- | test-lexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-lexer.cpp b/test-lexer.cpp index b76f4cc..4942013 100644 --- a/test-lexer.cpp +++ b/test-lexer.cpp @@ -85,7 +85,7 @@ TEST_F(Test, BNF) { std::cout << i.value << std::endl; } #endif - Compiler compiler(bnf, Top); + Gram::Compiler compiler(bnf, Top); auto Program = compiler.compile(tokens); //ASSERT_EQ(Program, Program_reference); |