diff options
author | Pedro Alves <palves@redhat.com> | 2010-02-23 17:03:54 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-02-23 17:03:54 +0000 |
commit | e707a91d99f5c250c14bf5b9d8fdac0358bb2693 (patch) | |
tree | acf4e4a9f1c57ac8e5be6b878bfe504cdf53a6d8 | |
parent | cfce2ea2f1d31e7a2efe7c4b5e93fcd35c994d17 (diff) | |
download | gdb-e707a91d99f5c250c14bf5b9d8fdac0358bb2693.zip gdb-e707a91d99f5c250c14bf5b9d8fdac0358bb2693.tar.gz gdb-e707a91d99f5c250c14bf5b9d8fdac0358bb2693.tar.bz2 |
2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
* c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/c-exp.y | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4abb6af..3d9db88 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2010-02-23 Harald Koenig <H.Koenig@science-computing.de> + * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE. + +2010-02-23 Harald Koenig <H.Koenig@science-computing.de> + * varobj.c (varobj_update): Avoid non-constants in initializers. 2010-02-23 Tom Tromey <tromey@redhat.com> diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 5ac90d8..1af76c9 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -2295,7 +2295,7 @@ lex_one_token (void) typedef struct { int token; - union YYSTYPE value; + YYSTYPE value; } token_and_value; DEF_VEC_O (token_and_value); |