mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-18 20:02:22 -07:00
Very minor style changes
This commit is contained in:
+2
-1
@@ -1602,8 +1602,9 @@ AstNode *parse_call_expr(AstFile *f, AstNode *operand) {
|
||||
while (f->curr_token.kind != Token_CloseParen &&
|
||||
f->curr_token.kind != Token_EOF &&
|
||||
ellipsis.pos.line == 0) {
|
||||
if (f->curr_token.kind == Token_Comma)
|
||||
if (f->curr_token.kind == Token_Comma) {
|
||||
syntax_error(f->curr_token, "Expected an expression not a ,");
|
||||
}
|
||||
|
||||
if (f->curr_token.kind == Token_Ellipsis) {
|
||||
ellipsis = f->curr_token;
|
||||
|
||||
Reference in New Issue
Block a user