X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=lexer.h;h=24e29ddee4080659be406da5f073ef041ecdb115;hb=d2405a9ad82a153b11515df9555764c61fb8e597;hp=48ab4b6e17b0a3b7af2aea2d6cbbb66af28ffee7;hpb=f8af7adcd7afa208bd9d0e104e140d88efb2666f;p=xonotic%2Fgmqcc.git diff --git a/lexer.h b/lexer.h index 48ab4b6..24e29dd 100644 --- a/lexer.h +++ b/lexer.h @@ -196,6 +196,7 @@ static const oper_info c_operators[] = { { "*", 2, opid1('*'), ASSOC_LEFT, 13, 0, true}, { "/", 2, opid1('/'), ASSOC_LEFT, 13, 0, true}, { "%", 2, opid1('%'), ASSOC_LEFT, 13, 0, true}, + { "><", 2, opid2('>','<'), ASSOC_LEFT, 13, 0, true}, { "+", 2, opid1('+'), ASSOC_LEFT, 12, 0, true}, { "-", 2, opid1('-'), ASSOC_LEFT, 12, 0, true},