mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-21 18:30:52 +00:00
Make it compile as C++ code again.
This commit is contained in:
parent
9bc774dcd3
commit
eb0e3c2898
1 changed files with 1 additions and 1 deletions
2
parser.c
2
parser.c
|
@ -1091,7 +1091,7 @@ static bool parser_sy_apply_operator(parser_t *parser, shunt *sy)
|
|||
} else {
|
||||
ast_binary *eq = ast_binary_new(ctx, INSTR_EQ_F, exprs[0], exprs[1]);
|
||||
|
||||
eq->refs = false; /* references nothing */
|
||||
eq->refs = (ast_binary_ref)false; /* references nothing */
|
||||
|
||||
/* if (lt) { */
|
||||
out = (ast_expression*)ast_ternary_new(ctx,
|
||||
|
|
Loading…
Reference in a new issue