mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Change trailing comma require to -strict-style only
This commit is contained in:
+1
-1
@@ -1434,7 +1434,7 @@ gb_internal Token expect_closing_brace_of_field_list(AstFile *f) {
|
|||||||
return token;
|
return token;
|
||||||
}
|
}
|
||||||
bool ok = true;
|
bool ok = true;
|
||||||
if (!f->allow_newline) {
|
if (f->allow_newline) {
|
||||||
ok = !skip_possible_newline(f);
|
ok = !skip_possible_newline(f);
|
||||||
}
|
}
|
||||||
if (ok && allow_token(f, Token_Semicolon)) {
|
if (ok && allow_token(f, Token_Semicolon)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user