From: Pedro Alves Date: Tue, 23 Feb 2010 17:03:54 +0000 (+0000) Subject: 2010-02-23 Harald Koenig X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e707a91d99f5c250c14bf5b9d8fdac0358bb2693;p=binutils-gdb.git 2010-02-23 Harald Koenig * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4abb6af8ccb..3d9db889998 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2010-02-23 Harald Koenig + + * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE. + 2010-02-23 Harald Koenig * varobj.c (varobj_update): Avoid non-constants in initializers. diff --git a/gdb/c-exp.y b/gdb/c-exp.y index 5ac90d8c69b..1af76c9dc71 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);