diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a4f0b8aee03..5b5e78323a5 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2005-11-14 Mark Mitchell + + * parser.c (eof_token): Add initializer for ambiguous_p. + 2005-11-13 Mark Mitchell PR c++/24817 diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 2b850c0d197..cf60d298252 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -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