C++11: Allow brace-init-list in range-for statement.

Also drop the unused 'initializer' member from
RangeBasedForStatementAST.

Change-Id: I078ebbc85cafa643af4bfe62d698bf7de71360e4
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Christian Kamm
2012-09-18 09:50:23 +02:00
committed by hjk
parent ecd54059d3
commit 9bd86e7d68
12 changed files with 12 additions and 22 deletions

View File

@@ -3429,7 +3429,11 @@ bool Parser::parseForStatement(StatementAST *&node)
ast->colon_token = consumeToken();
blockErrors(blocked);
parseExpression(ast->expression);
if (LA() == T_LBRACE) {
parseBracedInitList0x(ast->expression);
} else {
parseExpression(ast->expression);
}
match(T_RPAREN, &ast->rparen_token);
parseStatement(ast->statement);