* parser.c (eof_token): Add initializer for ambiguous_p.
authorMark Mitchell <mark@codesourcery.com>
Mon, 14 Nov 2005 15:29:03 +0000 (15:29 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Mon, 14 Nov 2005 15:29:03 +0000 (15:29 +0000)
From-SVN: r106889

gcc/cp/ChangeLog
gcc/cp/parser.c

index a4f0b8aee03a15ddf95f39fa6cc82e347fc0aa23..5b5e78323a58f3542e703481d1f8970b5dbab926 100644 (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
index 2b850c0d197ea339f1d9393af4ea7afdf64de975..cf60d2982521c8ee2857023a296ff487b309981f 100644 (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