aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-06-08 11:35:22 +0100
committerGinger Bill <bill@gingerbill.org>2017-06-08 11:35:22 +0100
commit333924cce15e10e941ee63d6fcdc19d5cb95bb3c (patch)
tree9692058be2984ae6771c9cefba079f366395dddc /src
parent574b82c0c7e266bcd1bc16ee709d32936625cf46 (diff)
v0.3 Releasev0.3.0
Diffstat (limited to 'src')
-rw-r--r--src/parser.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parser.c b/src/parser.c
index 4c7cc50af..18aa32a0f 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -3880,7 +3880,6 @@ AstNodeArray parse_stmt_list(AstFile *f) {
AstNodeArray list = make_ast_node_array(f);
while (f->curr_token.kind != Token_case &&
- // f->curr_token.kind != Token_default &&
f->curr_token.kind != Token_CloseBrace &&
f->curr_token.kind != Token_EOF) {
AstNode *stmt = parse_stmt(f);