summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_component.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_component.h')
-rw-r--r--TAO/TAO_IDL/include/ast_component.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/include/ast_component.h b/TAO/TAO_IDL/include/ast_component.h
index b3369adf483..6e41a2d41ec 100644
--- a/TAO/TAO_IDL/include/ast_component.h
+++ b/TAO/TAO_IDL/include/ast_component.h
@@ -26,11 +26,11 @@ public:
// Extend lookup to the base component.
virtual AST_Decl *look_in_inherited (UTL_ScopedName *e,
- bool treat_as_ref);
+ idl_bool treat_as_ref);
// Extend lookup to the supported interfaces.
virtual AST_Decl *look_in_supported (UTL_ScopedName *e,
- bool treat_as_ref);
+ idl_bool treat_as_ref);
// Utility data structure for port declarations.
struct port_description
@@ -41,7 +41,7 @@ public:
// Fields.
Identifier *id;
AST_Type *impl;
- bool is_multiple;
+ idl_bool is_multiple;
};
// Accessors.
@@ -74,7 +74,7 @@ public:
// Check if we have redefined any of our parents' operations or attributes,
// and check if there is such a clash among the parents
- virtual bool redef_clash (void);
+ virtual idl_bool redef_clash (void);
private:
AST_Component *pd_base_component;