diff options
| author | gingerBill <bill@gingerbill.org> | 2018-12-28 13:32:59 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-12-28 13:32:59 +0000 |
| commit | 2bbad5903f38516899de8f26d5b522beb82dcae1 (patch) | |
| tree | 409939c7e547e3eb71fcae4cd3d8a26ed081e380 | |
| parent | a240a3d14660f6b33f839a3ebf142e20aac3e80a (diff) | |
Add `static` to `fix_advance_to_next_stmt`
| -rw-r--r-- | src/parser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index 9eeb6ea8c..f337cd08a 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1236,8 +1236,7 @@ void fix_advance_to_next_stmt(AstFile *f) { case Token_defer: case Token_asm: case Token_using: - // case Token_thread_local: - // case Token_no_alias: + case Token_static: case Token_break: case Token_continue: |