Fix minor issue with a lack of a trailing comma

This commit is contained in:
gingerBill
2022-07-25 12:12:25 +01:00
parent ecd81e8a53
commit 5f2b220a85
+2 -1
View File
@@ -3894,7 +3894,8 @@ Ast *parse_field_list(AstFile *f, isize *name_count_, u32 allowed_flags, TokenKi
while (f->curr_token.kind != follow && while (f->curr_token.kind != follow &&
f->curr_token.kind != Token_EOF) { f->curr_token.kind != Token_EOF &&
f->curr_token.kind != Token_Semicolon) {
CommentGroup *docs = f->lead_comment; CommentGroup *docs = f->lead_comment;
u32 set_flags = parse_field_prefixes(f); u32 set_flags = parse_field_prefixes(f);
Token tag = {}; Token tag = {};