summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Mcast/EC_Mcast.i
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/EC_Mcast/EC_Mcast.i')
-rw-r--r--TAO/orbsvcs/tests/EC_Mcast/EC_Mcast.i8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/EC_Mcast/EC_Mcast.i b/TAO/orbsvcs/tests/EC_Mcast/EC_Mcast.i
index bd62b00a8d6..f44811dcd02 100644
--- a/TAO/orbsvcs/tests/EC_Mcast/EC_Mcast.i
+++ b/TAO/orbsvcs/tests/EC_Mcast/EC_Mcast.i
@@ -30,7 +30,7 @@ ECM_Federation::supplier_types (void) const
ACE_INLINE const char*
ECM_Federation::supplier_name (CORBA::ULong i) const
{
- if (i < ACE_static_cast (ACE_CAST_CONST CORBA::ULong, this->supplier_types_))
+ if (i < static_cast<ACE_CAST_CONST CORBA::ULong> (this->supplier_types_))
return this->supplier_names_[i];
return 0;
}
@@ -38,7 +38,7 @@ ECM_Federation::supplier_name (CORBA::ULong i) const
ACE_INLINE CORBA::ULong
ECM_Federation::supplier_ipaddr (CORBA::ULong i) const
{
- if (i < ACE_static_cast (ACE_CAST_CONST CORBA::ULong, this->supplier_types_))
+ if (i < static_cast<ACE_CAST_CONST CORBA::ULong> (this->supplier_types_))
return this->supplier_ipaddr_[i];
return 0;
}
@@ -52,7 +52,7 @@ ECM_Federation::consumer_types (void) const
ACE_INLINE const char*
ECM_Federation::consumer_name (CORBA::ULong i) const
{
- if (i < ACE_static_cast (ACE_CAST_CONST CORBA::ULong, this->consumer_types_))
+ if (i < static_cast<ACE_CAST_CONST CORBA::ULong> (this->consumer_types_))
return this->consumer_names_[i];
return 0;
}
@@ -60,7 +60,7 @@ ECM_Federation::consumer_name (CORBA::ULong i) const
ACE_INLINE CORBA::ULong
ECM_Federation::consumer_ipaddr (CORBA::ULong i) const
{
- if (i < ACE_static_cast (ACE_CAST_CONST CORBA::ULong, this->consumer_types_))
+ if (i < static_cast<ACE_CAST_CONST CORBA::ULong> (this->consumer_types_))
return this->consumer_ipaddr_[i];
return 0;
}