diff options
| author | gingerBill <bill@gingerbill.org> | 2018-06-11 22:50:13 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-06-11 22:50:13 +0100 |
| commit | 8236c6d4b7f75f2e20332b0b4181b259336f9a4a (patch) | |
| tree | 7143ccf9b23f9580ba10a63e6af699dc14a22db9 /src/parser.cpp | |
| parent | 555fe37ad8142f7daccf61ba7869a43376cd0441 (diff) | |
Allow for base enum type with an enum declaration
Diffstat (limited to 'src/parser.cpp')
| -rw-r--r-- | src/parser.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index a11fadef4..780ab1574 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1030,7 +1030,6 @@ AstNode *ast_attribute(AstFile *f, Token token, Token open, Token close, Array<A bool next_token0(AstFile *f) { - // Token prev = f->curr_token; if (f->curr_token_index+1 < f->tokens.count) { f->curr_token = f->tokens[++f->curr_token_index]; return true; |