diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-01-22 20:57:54 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-01-22 20:57:54 +0100 |
commit | 3eff766ce1cbed5d3a3c3158614e6741cc1b7f2a (patch) | |
tree | a8151a50baec72bbc81fc8dfcaf476c7f0555693 /lexer.h | |
parent | f4b2027868c9733bbbbcb4c5ec6d5462a8447e5d (diff) |
Using namespace for disambiguation
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 |