summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.cpp b/TAO/orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.cpp
index 542d0f31a68..b7f83ae5605 100644
--- a/TAO/orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/IFRService/PrimitiveDef_i.cpp
@@ -63,7 +63,7 @@ TAO_PrimitiveDef_i::type_i (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
"pkind",
pkind);
- switch (ACE_static_cast (CORBA::PrimitiveKind, pkind))
+ switch (static_cast<CORBA::PrimitiveKind> (pkind))
{
case CORBA::pk_null:
return CORBA::TypeCode::_duplicate (CORBA::_tc_null);
@@ -135,6 +135,6 @@ TAO_PrimitiveDef_i::kind_i (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
"pkind",
pkind);
- return ACE_static_cast (CORBA::PrimitiveKind, pkind);
+ return static_cast<CORBA::PrimitiveKind> (pkind);
}