summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/AbstractInterfaceDef_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/AbstractInterfaceDef_i.cpp')
-rw-r--r--TAO/orbsvcs/IFR_Service/AbstractInterfaceDef_i.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/TAO/orbsvcs/IFR_Service/AbstractInterfaceDef_i.cpp b/TAO/orbsvcs/IFR_Service/AbstractInterfaceDef_i.cpp
index 03a5cf38e31..227549eb3b9 100644
--- a/TAO/orbsvcs/IFR_Service/AbstractInterfaceDef_i.cpp
+++ b/TAO/orbsvcs/IFR_Service/AbstractInterfaceDef_i.cpp
@@ -23,26 +23,26 @@ TAO_AbstractInterfaceDef_i::~TAO_AbstractInterfaceDef_i (void)
}
CORBA::DefinitionKind
-TAO_AbstractInterfaceDef_i::def_kind (CORBA::Environment &)
+TAO_AbstractInterfaceDef_i::def_kind (TAO_ENV_SINGLE_ARG_DECL_NOT_USED)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::dk_AbstractInterface;
}
-CORBA::Boolean
-TAO_AbstractInterfaceDef_i::is_a (const char *interface_id,
- CORBA::Environment &ACE_TRY_ENV)
+CORBA::Boolean
+TAO_AbstractInterfaceDef_i::is_a (const char *interface_id
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
TAO_IFR_READ_GUARD_RETURN (0);
- return this->is_a_i (interface_id,
- ACE_TRY_ENV);
+ return this->is_a_i (interface_id
+ TAO_ENV_ARG_PARAMETER);
}
-CORBA::Boolean
-TAO_AbstractInterfaceDef_i::is_a_i (const char *interface_id,
- CORBA::Environment &ACE_TRY_ENV)
+CORBA::Boolean
+TAO_AbstractInterfaceDef_i::is_a_i (const char *interface_id
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
if (ACE_OS::strcmp (interface_id, "IDL:omg.org/CORBA/AbstractBase:1.0") == 0)
@@ -50,7 +50,7 @@ TAO_AbstractInterfaceDef_i::is_a_i (const char *interface_id,
return 1;
}
- return this->TAO_InterfaceDef_i::is_a_i (interface_id,
- ACE_TRY_ENV);
+ return this->TAO_InterfaceDef_i::is_a_i (interface_id
+ TAO_ENV_ARG_PARAMETER);
}