diff options
Diffstat (limited to 'lexer.h')
-rw-r--r-- | lexer.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,6 +3,8 @@ #include "minicc.h" #include "bnf.h" +namespace Lex { + struct TreeNode { index_t parent{}; std::vector<index_t> childs; // fill char by char @@ -53,4 +55,4 @@ public: }; - +} // namespace Lex |