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 /gdb/c-exp.y | |
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.
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r-- | gdb/c-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
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); |