summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_operation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_operation.cpp')
-rw-r--r--TAO/TAO_IDL/ast/ast_operation.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/TAO_IDL/ast/ast_operation.cpp b/TAO/TAO_IDL/ast/ast_operation.cpp
index fd4abf11824..5a98f6298cd 100644
--- a/TAO/TAO_IDL/ast/ast_operation.cpp
+++ b/TAO/TAO_IDL/ast/ast_operation.cpp
@@ -87,8 +87,8 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
#include "utl_strlist.h"
#include "global_extern.h"
-ACE_RCSID (ast,
- ast_operation,
+ACE_RCSID (ast,
+ ast_operation,
"$Id$")
AST_Operation::AST_Operation (void)
@@ -107,8 +107,8 @@ AST_Operation::AST_Operation (void)
AST_Operation::AST_Operation (AST_Type *rt,
Flags fl,
UTL_ScopedName *n,
- bool local,
- bool abstract)
+ idl_bool local,
+ idl_bool abstract)
: COMMON_Base (local,
abstract),
AST_Decl(AST_Decl::NT_op,
@@ -332,7 +332,7 @@ AST_Operation::fe_add_exceptions (UTL_NameList *t)
for (UTL_NamelistActiveIterator nl_i (t); !nl_i.is_done (); nl_i.next ())
{
nl_n = nl_i.item ();
- d = this->lookup_by_name (nl_n, true);
+ d = this->lookup_by_name (nl_n, I_TRUE);
if (d == 0)
{
@@ -429,7 +429,7 @@ AST_Operation::fe_add_argument (AST_Argument *t)
// This error is not caught in y.tab.cpp so we check for it here.
if (arg_type->node_type () == AST_Decl::NT_array
- && arg_type->anonymous () == true)
+ && arg_type->anonymous () == I_TRUE)
{
idl_global->err ()->syntax_error (idl_global->parse_state ());
}
@@ -439,7 +439,7 @@ AST_Operation::fe_add_argument (AST_Argument *t)
// Add it to set of locally referenced symbols.
this->add_to_referenced (t,
- false,
+ I_FALSE,
t->local_name ());
UTL_ScopedName *mru = arg_type->last_referenced_as ();
@@ -447,7 +447,7 @@ AST_Operation::fe_add_argument (AST_Argument *t)
if (mru != 0)
{
this->add_to_referenced (arg_type,
- false,
+ I_FALSE,
mru->first_component ());
}