X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=lexer.h;h=83cb62470dc53f79a4da813ae1177f7f91091d80;hp=9724a7b90d97c386e1de013a97e08d654e05d280;hb=db229b6f94175076dec1d105169aaf984db58f7d;hpb=d27c06ea7fb9f55ea4014851af2b219732b657ef diff --git a/lexer.h b/lexer.h index 9724a7b..83cb624 100644 --- a/lexer.h +++ b/lexer.h @@ -185,6 +185,7 @@ static const oper_info c_operators[] = { { "%", 2, opid1('%'), ASSOC_LEFT, 13, 0 }, { "+", 2, opid1('+'), ASSOC_LEFT, 12, 0 }, + { "**", 2, opid2('*', '*'), ASSOC_RIGHT, 12, 0 }, { "-", 2, opid1('-'), ASSOC_LEFT, 12, 0 }, { "<<", 2, opid2('<','<'), ASSOC_LEFT, 11, 0 },