From 10b4e9cc1f9b045ca33ac14ec0e73d74a10bf5b8 Mon Sep 17 00:00:00 2001 From: paolo Date: Thu, 18 Mar 2010 11:46:15 +0000 Subject: [PATCH] 2010-03-18 Paolo Carlini PR c++/43418 * parser.c (cp_parser_for_init_statement): Use NULL_TREE, not false, in the cp_parser_expression_statement call. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157536 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 55d05174eee..d27d12254ca 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -8352,7 +8352,7 @@ cp_parser_for_init_statement (cp_parser* parser) return; } - cp_parser_expression_statement (parser, false); + cp_parser_expression_statement (parser, NULL_TREE); } /* Parse a jump-statement. -- 2.11.0