summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-02-27 07:41:29 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-02-27 07:41:29 +0000
commit7e606a6520e0cefdbc5285eee384b4ad859bed63 (patch)
treec5eeeb6677c282adee021b700e89b062adbc2164
parent7f4211db0a38d9893d3d0a7da876b4f271b8590d (diff)
downloadATCD-7e606a6520e0cefdbc5285eee384b4ad859bed63.tar.gz
ChangeLogTag: Sun Feb 27 07:33:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/GOA.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/GOA.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/GOA.cpp
index f05d0f582f8..13421164974 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/GOA.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/GOA.cpp
@@ -605,14 +605,14 @@ TAO_GOA::find_group_component_in_profile (const TAO_Profile* profile,
const CORBA::Octet *buf =
tagged_component.component_data.get_buffer ();
- TAO_InputCDR in_cdr (ACE_reinterpret_cast (const char*, buf),
+ TAO_InputCDR in_cdr (reinterpret_cast <const char*> (buf),
tagged_component.component_data.length ());
// Extract the Byte Order.
CORBA::Boolean byte_order;
if ((in_cdr >> ACE_InputCDR::to_boolean (byte_order)) == 0)
return -1;
- in_cdr.reset_byte_order (ACE_static_cast(int, byte_order));
+ in_cdr.reset_byte_order (static_cast <int> (byte_order));
if ((in_cdr >> group) == 0)
return -1;