From 12d87fba1b967a1443fbc1d9560b601792620b75 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 31 Dec 2012 12:56:04 +0100 Subject: [PATCH 1/1] Adding '&~=' to the -std=gmqcc operator list --- lexer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lexer.h b/lexer.h index 45b4ad2..28bae8a 100644 --- a/lexer.h +++ b/lexer.h @@ -219,6 +219,7 @@ static const oper_info c_operators[] = { { "&=", 2, opid2('&','='), ASSOC_RIGHT, 2, 0 }, { "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 }, { "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 }, + { "&~=", 2, opid3('&','~','='), ASSOC_RIGHT, 2, 0 }, { ":", 0, opid2(':','?'), ASSOC_RIGHT, 1, 0 }, -- 2.39.2