diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-10-30 12:24:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-30 12:24:23 +0000 |
| commit | f469bbb0049f618d09dd1dd962389c8306db6bbc (patch) | |
| tree | c9fc02d1e8a7583ba339d8402f17ff6874403394 /src/parser.cpp | |
| parent | ee76acd665911e2f28d5183b3c0a07a665dbf858 (diff) | |
| parent | b59647084b11a7f08ad3aa54ae47ceb157f12c46 (diff) | |
Merge pull request #4425 from bobsayshilol/misc-fixes
Misc fixes
Diffstat (limited to 'src/parser.cpp')
| -rw-r--r-- | src/parser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index 4029d49de..9d8b0d231 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -4262,8 +4262,6 @@ gb_internal bool allow_field_separator(AstFile *f) { gb_internal Ast *parse_struct_field_list(AstFile *f, isize *name_count_) { Token start_token = f->curr_token; - auto decls = array_make<Ast *>(ast_allocator(f)); - isize total_name_count = 0; Ast *params = parse_field_list(f, &total_name_count, FieldFlag_Struct, Token_CloseBrace, false, false); |