1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Added tCHAR to Parser::primaryExpression().

This commit is contained in:
John Camelon 2003-04-28 18:16:48 +00:00
parent b918254917
commit 5b0250419e

View file

@ -2440,7 +2440,8 @@ c, quick);
case Token.tSTRING:
case Token.tLSTRING:
case Token.t_false:
case Token.t_true:
case Token.t_true:
case Token.tCHAR:
try{ callback.expressionTerminal(expression, consume());} catch( Exception e ) {}
return;