summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_union.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_union.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_union.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/be_include/be_union.h b/TAO/TAO_IDL/be_include/be_union.h
index 7ebe974875a..e5564f38d7a 100644
--- a/TAO/TAO_IDL/be_include/be_union.h
+++ b/TAO/TAO_IDL/be_include/be_union.h
@@ -39,14 +39,14 @@ public:
be_union (AST_ConcreteType *dt,
UTL_ScopedName *n,
- bool local,
- bool abstract);
+ idl_bool local,
+ idl_bool abstract);
// Constructor.
virtual void redefine (AST_Structure *from);
// Catch BE-specific member values before delegating to the base class.
- virtual bool has_duplicate_case_labels (void);
+ virtual idl_bool has_duplicate_case_labels (void);
// Do we have at least one member with multiple case labels?
virtual void destroy (void);
@@ -55,10 +55,10 @@ public:
virtual int accept (be_visitor *visitor);
// Visiting.
- bool gen_empty_default_label (void);
+ idl_bool gen_empty_default_label (void);
// Decides whether a default switch case label in the generated copy
// constructor, assignment operator, etc. is needed.
-
+
unsigned long nlabels (void);
// Returns total number of labels, useful when the union has
// multiple case labels.