diff options
author | Mark Mitchell <mark@codesourcery.com> | 2005-11-14 15:29:03 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2005-11-14 15:29:03 +0000 |
commit | e2d281617f2ffa875b7e53038eafea3faeec6670 (patch) | |
tree | 9d54d153cc771363dc7736c756e6f01faf64d1b1 | |
parent | a112ad758ae06bc714bde2127429dad5ee22eed6 (diff) | |
download | gcc-e2d281617f2ffa875b7e53038eafea3faeec6670.zip gcc-e2d281617f2ffa875b7e53038eafea3faeec6670.tar.gz gcc-e2d281617f2ffa875b7e53038eafea3faeec6670.tar.bz2 |
* parser.c (eof_token): Add initializer for ambiguous_p.
From-SVN: r106889
-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 a4f0b8a..5b5e783 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 2b850c0..cf60d29 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 |