summaryrefslogtreecommitdiff
path: root/gcc/cp/name-lookup.h
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-27 02:33:22 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2004-01-27 02:33:22 +0000
commit2ccf1c3a97737e7584b47919475f87f03c63a4f1 (patch)
treeb72bec59563c306cade59d3562d4d103bc29ffb3 /gcc/cp/name-lookup.h
parent5ed189cbe64af93ee3002fda13be5961b371952d (diff)
downloadgcc-2ccf1c3a97737e7584b47919475f87f03c63a4f1.tar.gz
* system.h (CHAR_BITFIELD): Delete.
(BOOL_BITFIELD): New. * c-decl.c (c_scope): Use BOOL_BITFIELD. * gengtype-lex.l: Recognize BOOL_BITFIELD instead of CHAR_BITFIELD. cp: * cp-tree.h (language_function, lang_type_header): Use BOOL_BITFIELD. * name-lookup.h (cp_binding_level): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/name-lookup.h')
-rw-r--r--gcc/cp/name-lookup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/name-lookup.h b/gcc/cp/name-lookup.h
index c986fbc9707..f9764fcfdec 100644
--- a/gcc/cp/name-lookup.h
+++ b/gcc/cp/name-lookup.h
@@ -215,7 +215,7 @@ struct cp_binding_level GTY(())
/* True if this scope is an SK_TEMPLATE_SPEC scope. This field is
only valid if KIND == SK_TEMPLATE_PARMS. */
- bool explicit_spec_p : 1;
+ BOOL_BITFIELD explicit_spec_p : 1;
/* true means make a BLOCK for this level regardless of all else. */
unsigned keep : 1;