From: Mark Mitchell Date: Mon, 14 Nov 2005 15:29:03 +0000 (+0000) Subject: * parser.c (eof_token): Add initializer for ambiguous_p. X-Git-Tag: releases/gcc-4.1.0~878 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2d281617f2ffa875b7e53038eafea3faeec6670;p=thirdparty%2Fgcc.git * parser.c (eof_token): Add initializer for ambiguous_p. From-SVN: r106889 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a4f0b8aee03a..5b5e78323a58 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 2b850c0d197e..cf60d2982521 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