Fix ternary operator entry for -std=gmqcc

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-12-02 11:56:20 +01:00
parent d39df54f8a
commit 95865035eb

View file

@ -217,7 +217,7 @@ static const oper_info c_operators[] = {
{ "^=", 2, opid2('^','='), ASSOC_RIGHT, 2, 0 },
{ "|=", 2, opid2('|','='), ASSOC_RIGHT, 2, 0 },
{ ":", 3, opid2(':','?'), ASSOC_RIGHT, 1, 0 },
{ ":", 0, opid2(':','?'), ASSOC_RIGHT, 1, 0 },
{ ",", 2, opid1(','), ASSOC_LEFT, 0, 0 }
};