X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=lexer.h;h=48ab4b6e17b0a3b7af2aea2d6cbbb66af28ffee7;hp=2d67f3967e605ad9fd87dd5181919a03c07d5a72;hb=f8af7adcd7afa208bd9d0e104e140d88efb2666f;hpb=dd289ed0e1167dacc1b5f53f59e4b32c23d575a6 diff --git a/lexer.h b/lexer.h index 2d67f39..48ab4b6 100644 --- a/lexer.h +++ b/lexer.h @@ -235,7 +235,6 @@ static const oper_info c_operators[] = { { "&=", 2, opid2('&','='), ASSOC_RIGHT, 2, 0, false}, { "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0, false}, { "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0, false}, - { "&~=", 2, opid3('&','~','='), ASSOC_RIGHT, 2, 0, false}, { ":", 0, opid2(':','?'), ASSOC_RIGHT, 1, 0, false},