Commit ca176e1c by Martin Jambor Committed by Martin Jambor

parser.c (cp_parser_parameter_declaration_list): Initialize parenthesized_p.

2011-07-18  Martin Jambor  <mjambor@suse.cz>

gcc/cp/
	* parser.c (cp_parser_parameter_declaration_list): Initialize
	parenthesized_p.

From-SVN: r176423
parent 6774a66f
2011-07-18 Martin Jambor <mjambor@suse.cz>
* parser.c (cp_parser_parameter_declaration_list): Initialize
parenthesized_p.
2011-07-16 Jason Merrill <jason@redhat.com>
* pt.c (tinst_level_tick, last_template_error_tick): Replace with
......
......@@ -15921,7 +15921,7 @@ cp_parser_parameter_declaration_list (cp_parser* parser, bool *is_error)
{
cp_parameter_declarator *parameter;
tree decl = error_mark_node;
bool parenthesized_p;
bool parenthesized_p = false;
/* Parse the parameter. */
parameter
= cp_parser_parameter_declaration (parser,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment