mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
Fix ternary operator entry for -std=gmqcc
This commit is contained in:
parent
d39df54f8a
commit
95865035eb
1 changed files with 1 additions and 1 deletions
2
lexer.h
2
lexer.h
|
@ -217,7 +217,7 @@ static const oper_info c_operators[] = {
|
|||
{ "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 },
|
||||
{ "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 },
|
||||
|
||||
{ ":", 3, opid2(':','?'), ASSOC_RIGHT, 1, 0 },
|
||||
{ ":", 0, opid2(':','?'), ASSOC_RIGHT, 1, 0 },
|
||||
|
||||
{ ",", 2, opid1(','), ASSOC_LEFT, 0, 0 }
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue