summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_structure.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_structure.h')
-rw-r--r--TAO/TAO_IDL/include/ast_structure.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/TAO_IDL/include/ast_structure.h b/TAO/TAO_IDL/include/ast_structure.h
index 98d228d833c..1ff0d431aed 100644
--- a/TAO/TAO_IDL/include/ast_structure.h
+++ b/TAO/TAO_IDL/include/ast_structure.h
@@ -88,13 +88,13 @@ public:
AST_Structure (void);
AST_Structure (UTL_ScopedName *n,
- bool local,
- bool abstract);
+ idl_bool local,
+ idl_bool abstract);
AST_Structure (AST_Decl::NodeType nt,
UTL_ScopedName *n,
- bool local,
- bool abstract);
+ idl_bool local,
+ idl_bool abstract);
virtual ~AST_Structure (void);
@@ -120,10 +120,10 @@ public:
size_t slot) const;
// Get an individual field node.
- virtual bool is_local (void);
+ virtual idl_bool is_local (void);
// Overwrite the is_local method.
- virtual bool in_recursion (ACE_Unbounded_Queue<AST_Type *> &list);
+ virtual idl_bool in_recursion (ACE_Unbounded_Queue<AST_Type *> &list);
// Are we or the node represented by node involved in recursion.
virtual int contains_wstring (void);
@@ -132,7 +132,7 @@ public:
// Is this struct or union defined? This predicate returns FALSE when a
// forward declaration is not defined yet, and TRUE in
// all other cases.
- bool is_defined (void)
+ idl_bool is_defined (void)
{
return this->size_type () != AST_Type::SIZE_UNKNOWN;
}
@@ -181,7 +181,7 @@ private:
int member_count_;
// Number of members.
- int local_struct_;
+ idl_bool local_struct_;
// We also need to determine whether we contain any local type.
};