Adding '&~=' to the -std=gmqcc operator list

This commit is contained in:
Wolfgang Bumiller 2012-12-31 12:56:04 +01:00
parent 0920cb6ec4
commit 12d87fba1b

View file

@ -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, opid3('&','~','='), ASSOC_RIGHT, 2, 0 },
{ ":", 0, opid2(':','?'), ASSOC_RIGHT, 1, 0 },