summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_sequence.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_sequence.h')
-rw-r--r--TAO/TAO_IDL/include/ast_sequence.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/include/ast_sequence.h b/TAO/TAO_IDL/include/ast_sequence.h
index 2bdcfb4c264..0da4d06d455 100644
--- a/TAO/TAO_IDL/include/ast_sequence.h
+++ b/TAO/TAO_IDL/include/ast_sequence.h
@@ -68,7 +68,7 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
#define _AST_SEQUENCE_AST_SEQUENCE_HH
#include "ast_concrete_type.h"
-
+#include "idl_bool.h"
class AST_Expression;
class AST_Type;
@@ -83,12 +83,12 @@ public:
AST_Sequence (AST_Expression *max_size,
AST_Type *bt,
UTL_ScopedName *n,
- bool local,
- bool abstract);
+ idl_bool local,
+ idl_bool abstract);
virtual ~AST_Sequence (void);
- 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.
// Data Accessors.
@@ -96,7 +96,7 @@ public:
AST_Type *base_type (void) const;
- virtual bool unbounded (void) const;
+ virtual idl_bool unbounded (void) const;
// Is this sequence bounded or not.
// Recursively called on valuetype to check for legal use as
@@ -122,7 +122,7 @@ private:
AST_Type *pd_base_type;
// Sequence base type.
- bool unbounded_;
+ idl_bool unbounded_;
// Whether we are bounded or unbounded.
};