summaryrefslogtreecommitdiff
path: root/TAO/tao/Array_VarOut_T.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 09:20:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-20 09:20:49 +0000
commitf88ee579caae445037f4e8cb82c123fe70185bf2 (patch)
treec8342c58f97fd373fe947f929b59aecb58edc498 /TAO/tao/Array_VarOut_T.cpp
parent5f0a791ade17efb4c6fab5c8a462ddb514037121 (diff)
downloadATCD-f88ee579caae445037f4e8cb82c123fe70185bf2.tar.gz
ChangeLogTag: Tue Jun 20 08:12:04 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Array_VarOut_T.cpp')
-rw-r--r--TAO/tao/Array_VarOut_T.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Array_VarOut_T.cpp b/TAO/tao/Array_VarOut_T.cpp
index 3ffc6f253a0..91a36bbec95 100644
--- a/TAO/tao/Array_VarOut_T.cpp
+++ b/TAO/tao/Array_VarOut_T.cpp
@@ -14,7 +14,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template<typename array_traits>
TAO_FixedArray_Var_T<array_traits> &
-TAO_FixedArray_Var_T<array_traits>::operator= (slice_type * p)
+TAO_FixedArray_Var_T<array_traits>::operator= (_slice_type * p)
{
// Is what we own the same that is being assigned to us?
if (this->ptr_ != p)
@@ -48,7 +48,7 @@ TAO_FixedArray_Var_T<array_traits>::operator= (
template<typename array_traits>
TAO_VarArray_Var_T<array_traits> &
-TAO_VarArray_Var_T<array_traits>::operator= (slice_type * p)
+TAO_VarArray_Var_T<array_traits>::operator= (_slice_type * p)
{
// Is what we own the same that is being assigned to us?
if (this->ptr_ != p)
@@ -86,7 +86,7 @@ TAO_Array_Forany_T<array_traits>::_tao_any_destructor (
void * _tao_void_pointer
)
{
- slice_type * tmp = static_cast<slice_type *> (_tao_void_pointer);
+ _slice_type * tmp = static_cast<_slice_type *> (_tao_void_pointer);
TAO::details::array_traits<array_traits>::free (tmp);
}