mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-12 04:01:42 +00:00
Adding '&~=' to the -std=gmqcc operator list
This commit is contained in:
parent
0920cb6ec4
commit
12d87fba1b
1 changed files with 1 additions and 0 deletions
1
lexer.h
1
lexer.h
|
@ -219,6 +219,7 @@ static const oper_info c_operators[] = {
|
||||||
{ "&=", 2, opid2('&','='), ASSOC_RIGHT, 2, 0 },
|
{ "&=", 2, opid2('&','='), ASSOC_RIGHT, 2, 0 },
|
||||||
{ "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 },
|
{ "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 },
|
||||||
{ "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 },
|
{ "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 },
|
||||||
|
{ "&~=", 2, opid3('&','~','='), ASSOC_RIGHT, 2, 0 },
|
||||||
|
|
||||||
{ ":", 0, opid2(':','?'), ASSOC_RIGHT, 1, 0 },
|
{ ":", 0, opid2(':','?'), ASSOC_RIGHT, 1, 0 },
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue