Commit 90808894 by Jan Hubicka

parser.c (cp_parser_postfix_expression): Initialize 's' to NULL_TREE.

	* parser.c (cp_parser_postfix_expression): Initialize 's' to
	NULL_TREE.

From-SVN: r73802
parent 6f39ead4
......@@ -3709,7 +3709,7 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p)
/* Otherwise, try the pseudo-destructor-name production. */
else
{
tree s;
tree s = NULL_TREE;
tree type;
/* Parse the pseudo-destructor-name. */
......
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