summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_valuetype.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_valuetype.h')
-rw-r--r--TAO/TAO_IDL/include/ast_valuetype.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/TAO/TAO_IDL/include/ast_valuetype.h b/TAO/TAO_IDL/include/ast_valuetype.h
index 8e787eed3f6..8283d388664 100644
--- a/TAO/TAO_IDL/include/ast_valuetype.h
+++ b/TAO/TAO_IDL/include/ast_valuetype.h
@@ -20,9 +20,9 @@ public:
AST_Interface **supports,
long n_supports,
AST_Interface *supports_concrete,
- idl_bool abstract,
- idl_bool truncatable,
- idl_bool custom);
+ bool abstract,
+ bool truncatable,
+ bool custom);
virtual ~AST_ValueType (void);
@@ -37,16 +37,16 @@ public:
AST_Interface *supports_concrete (void) const;
- idl_bool truncatable (void) const;
- idl_bool custom (void) const;
+ bool truncatable (void) const;
+ bool custom (void) const;
- virtual idl_bool will_have_factory (void);
+ virtual bool will_have_factory (void);
// Called from y.tab.cpp to set the factory decl seen bit.
// Look up a scoped name in the supported interface list.
virtual AST_Decl *look_in_supported (UTL_ScopedName *,
- idl_bool treat_as_ref);
-
+ bool treat_as_ref);
+
// Recursively called on valuetype to check for legal use as
// a primary key. Overridden for valuetype, struct, sequence,
// union, array, typedef, and interface.
@@ -72,8 +72,8 @@ protected:
AST_ValueType *pd_inherits_concrete;
AST_Interface *pd_supports_concrete;
- idl_bool pd_truncatable;
- idl_bool pd_custom;
+ bool pd_truncatable;
+ bool pd_custom;
protected:
virtual AST_Factory *fe_add_factory (AST_Factory *f);