]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - lexer.h
Remove &~= operator from gmqccs operator table, only fteqcc supports it.
[xonotic/gmqcc.git] / lexer.h
diff --git a/lexer.h b/lexer.h
index 2d67f3967e605ad9fd87dd5181919a03c07d5a72..48ab4b6e17b0a3b7af2aea2d6cbbb66af28ffee7 100644 (file)
--- 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},