diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-14 15:29:03 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-14 15:29:03 +0000 |
commit | aef61b9b09dde9b9d0363f9ab9e70cffe7d725f0 (patch) | |
tree | 9d54d153cc771363dc7736c756e6f01faf64d1b1 | |
parent | 7634a73d4379539ea679b850ed6b5fc9b0db3477 (diff) | |
download | gcc-aef61b9b09dde9b9d0363f9ab9e70cffe7d725f0.tar.gz |
* parser.c (eof_token): Add initializer for ambiguous_p.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106889 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/parser.c | 2 |
2 files changed, 5 insertions, 1 deletions
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 <mark@codesourcery.com> + + * parser.c (eof_token): Add initializer for ambiguous_p. + 2005-11-13 Mark Mitchell <mark@codesourcery.com> 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 |