X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=lexer.h;h=ee9be17d966147991c5817e3b19f6735cf414c38;hb=d9572e3e303929e1b6d7267d43c0904dac3078f5;hp=44f6491725c17a5dc458cdf789a0e2b8cf248450;hpb=0f479f3e885211d633d6fd1e447e7677e56d6ccc;p=xonotic%2Fgmqcc.git diff --git a/lexer.h b/lexer.h index 44f6491..ee9be17 100644 --- a/lexer.h +++ b/lexer.h @@ -185,8 +185,7 @@ static const oper_info c_operators[] = { { "++", 1, opid3('+','+','P'), ASSOC_RIGHT, 16, OP_PREFIX, false}, { "--", 1, opid3('-','-','P'), ASSOC_RIGHT, 16, OP_PREFIX, false}, - { "**", 2, opid2('*','*'), ASSOC_RIGHT, 15, 0, true}, - + { "**", 2, opid2('*','*'), ASSOC_RIGHT, 14, 0, true}, { "!", 1, opid2('!','P'), ASSOC_RIGHT, 14, OP_PREFIX, true}, { "~", 1, opid2('~','P'), ASSOC_RIGHT, 14, OP_PREFIX, true}, { "+", 1, opid2('+','P'), ASSOC_RIGHT, 14, OP_PREFIX, false},