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
This commit is contained in:
Jan Hubicka 2003-11-21 11:36:58 +00:00
parent 6f39ead47e
commit 9080889499
1 changed files with 1 additions and 1 deletions

View File

@ -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. */