summaryrefslogtreecommitdiff
path: root/TAO/tao/Any_Array_Impl_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Any_Array_Impl_T.cpp')
-rw-r--r--TAO/tao/Any_Array_Impl_T.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Any_Array_Impl_T.cpp b/TAO/tao/Any_Array_Impl_T.cpp
index d3804a5a718..c3b210afa2b 100644
--- a/TAO/tao/Any_Array_Impl_T.cpp
+++ b/TAO/tao/Any_Array_Impl_T.cpp
@@ -77,14 +77,14 @@ TAO::Any_Array_Impl_T<T_slice, T_forany>::extract (const CORBA::Any & any,
if (mb == 0)
{
TAO::Any_Array_Impl_T<T_slice, T_forany> *narrow_impl =
- dynamic_cast <TAO::Any_Array_Impl_T<T_slice, T_forany> *> (impl);
+ ACE_dynamic_cast ((TAO::Any_Array_Impl_T<T_slice, T_forany> *), impl);
if (narrow_impl == 0)
{
return 0;
}
- _tao_elem = reinterpret_cast<const T_slice*>(narrow_impl->value_) ;
+ _tao_elem = ACE_reinterpret_cast (const T_slice*, narrow_impl->value_);
return 1;
}
@@ -117,7 +117,7 @@ TAO::Any_Array_Impl_T<T_slice, T_forany>::extract (const CORBA::Any & any,
if (result == 1)
{
- _tao_elem = reinterpret_cast<const T_slice*>(replacement->value_) ;
+ _tao_elem = ACE_reinterpret_cast (const T_slice*, replacement->value_);
ACE_const_cast (CORBA::Any &, any).replace (replacement);
replacement_safety.release ();
return result;