]> de.git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - lexer.h
operator &~=
[xonotic/gmqcc.git] / lexer.h
diff --git a/lexer.h b/lexer.h
index f2933455723b0075e01ddf43c2c0619abc5ceb9b..2135ec60ee3f53c3c7ec43866f3701d19cf0a946 100644 (file)
--- a/lexer.h
+++ b/lexer.h
@@ -238,6 +238,7 @@ static const oper_info fte_operators[] = {
     { "%=",  2, opid2('%','='),     ASSOC_RIGHT, 8,  0 },
     { "&=",  2, opid2('&','='),     ASSOC_RIGHT, 8,  0 },
     { "|=",  2, opid2('|','='),     ASSOC_RIGHT, 8,  0 },
+    { "&~=", 2, opid3('&','~','='), ASSOC_RIGHT, 8,  0 },
 
     { "&&",  2, opid2('&','&'),     ASSOC_LEFT,  5,  0 },
     { "||",  2, opid2('|','|'),     ASSOC_LEFT,  5,  0 },