* parser.c (eof_token): Add initializer for ambiguous_p.

From-SVN: r106889
This commit is contained in:
Mark Mitchell 2005-11-14 15:29:03 +00:00 committed by Mark Mitchell
parent a112ad758a
commit e2d281617f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-11-14 Mark Mitchell <mark@codesourcery.com>
* parser.c (eof_token): Add initializer for ambiguous_p.
2005-11-13 Mark Mitchell <mark@codesourcery.com>
PR c++/24817

View File

@ -76,7 +76,7 @@ DEF_VEC_ALLOC_P (cp_token_position,heap);
static const cp_token eof_token =
{
CPP_EOF, RID_MAX, 0, 0, 0, NULL_TREE,
CPP_EOF, RID_MAX, 0, 0, 0, false, NULL_TREE,
#if USE_MAPPED_LOCATION
0
#else