diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-12-02 10:11:24 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-12-02 10:11:24 +0000 |
commit | 07e4a80b76c8ae344118d2642ef9e5e4004ba7ec (patch) | |
tree | 89a88d38688aa3a0550ef426280f096930866d9c /gcc/cp/lex.c | |
parent | 65292982ddc214c9ae7a53af3c37432b07f39974 (diff) | |
download | gcc-07e4a80b76c8ae344118d2642ef9e5e4004ba7ec.tar.gz |
* name-lookup.h (struct cp_binding_level): Use ENUM_BITFIELD.
* parser.c (struct cp_token): Likewise.
(struct cp_parser_token_tree_map_node): Likewise.
* lex.c (struct resword): Move const after ENUM_BITFIELD.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74169 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/lex.c')
-rw-r--r-- | gcc/cp/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 6d5482330b2..37baa485ce9 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -231,7 +231,7 @@ init_operators (void) struct resword { const char *const word; - const ENUM_BITFIELD(rid) rid : 16; + ENUM_BITFIELD(rid) const rid : 16; const unsigned int disable : 16; }; |