summaryrefslogtreecommitdiff
path: root/gdb/c-exp.y
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2010-02-23 17:03:50 +0000
committerPedro Alves <pedro@codesourcery.com>2010-02-23 17:03:50 +0000
commit467de4645f4a796e272b2177b371fc746c50d5f2 (patch)
treec877dba60a30c92ad9ae154c06c7dcd8c76535c2 /gdb/c-exp.y
parent0ecfd9a6f8fba15684db7bc4bcf47b40b23ef0d6 (diff)
downloadgdb-467de4645f4a796e272b2177b371fc746c50d5f2.tar.gz
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.y2
1 files changed, 1 insertions, 1 deletions
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);