summaryrefslogtreecommitdiff
path: root/TAO/tao/Typecode.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Typecode.i')
-rw-r--r--TAO/tao/Typecode.i22
1 files changed, 11 insertions, 11 deletions
diff --git a/TAO/tao/Typecode.i b/TAO/tao/Typecode.i
index d6df0851834..4066b436c19 100644
--- a/TAO/tao/Typecode.i
+++ b/TAO/tao/Typecode.i
@@ -36,7 +36,7 @@ CORBA::TypeCode::_nil (void)
}
ACE_INLINE CORBA::TCKind
-CORBA_TypeCode::kind (TAO_ENV_SINGLE_ARG_DECL_NOT_USED) const
+CORBA_TypeCode::kind (ACE_ENV_SINGLE_ARG_DECL_NOT_USED) const
{
return (CORBA::TCKind) this->kind_;
}
@@ -44,43 +44,43 @@ CORBA_TypeCode::kind (TAO_ENV_SINGLE_ARG_DECL_NOT_USED) const
// Returns true if the two typecodes are equivalent.
ACE_INLINE CORBA::Boolean
CORBA_TypeCode::equivalent (CORBA::TypeCode_ptr tc
- TAO_ENV_ARG_DECL) const
+ ACE_ENV_ARG_DECL) const
{
return this->equ_common (tc,
1
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
}
// Returns true if the two typecodes are identical.
ACE_INLINE CORBA::Boolean
CORBA_TypeCode::equal (CORBA::TypeCode_ptr tc
- TAO_ENV_ARG_DECL) const
+ ACE_ENV_ARG_DECL) const
{
return this->equ_common (tc,
0
- TAO_ENV_ARG_PARAMETER);
+ ACE_ENV_ARG_PARAMETER);
}
// returns the Repository ID
ACE_INLINE const char *
-CORBA_TypeCode::id (TAO_ENV_SINGLE_ARG_DECL) const
+CORBA_TypeCode::id (ACE_ENV_SINGLE_ARG_DECL) const
{
// if already precomputed
if (this->private_state_->tc_id_known_)
return this->private_state_->tc_id_;
else
- return this->private_id (TAO_ENV_SINGLE_ARG_PARAMETER);
+ return this->private_id (ACE_ENV_SINGLE_ARG_PARAMETER);
}
// returns the string name
ACE_INLINE const char *
-CORBA_TypeCode::name (TAO_ENV_SINGLE_ARG_DECL) const
+CORBA_TypeCode::name (ACE_ENV_SINGLE_ARG_DECL) const
{
// if already precomputed
if (this->private_state_->tc_name_known_)
return this->private_state_->tc_name_;
else
- return this->private_name (TAO_ENV_SINGLE_ARG_PARAMETER);
+ return this->private_name (ACE_ENV_SINGLE_ARG_PARAMETER);
}
// Return the number of members defined by this typecode
@@ -89,13 +89,13 @@ CORBA_TypeCode::name (TAO_ENV_SINGLE_ARG_DECL) const
// For the rest of the cases, raises the BadKind exception.
ACE_INLINE CORBA::ULong
-CORBA_TypeCode::member_count (TAO_ENV_SINGLE_ARG_DECL) const
+CORBA_TypeCode::member_count (ACE_ENV_SINGLE_ARG_DECL) const
{
// if already precomputed
if (this->private_state_->tc_member_count_known_)
return this->private_state_->tc_member_count_;
else
- return this->private_member_count (TAO_ENV_SINGLE_ARG_PARAMETER);
+ return this->private_member_count (ACE_ENV_SINGLE_ARG_PARAMETER);
}
// ************************************************************