diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-06-19 14:51:36 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-06-19 14:51:36 +0000 |
commit | 061823f12de356c0e923beb28fa21892b8463dbd (patch) | |
tree | 27d566b86585b07ef0779a5f17a66d5fff4d2327 /TAO/tao/Array_VarOut_T.cpp | |
parent | d8f3fb3e01c05aaafd8f8527a014781feab8ea45 (diff) | |
download | ATCD-061823f12de356c0e923beb28fa21892b8463dbd.tar.gz |
ChangeLogTag: Mon Jun 19 14:49:25 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Array_VarOut_T.cpp')
-rw-r--r-- | TAO/tao/Array_VarOut_T.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/Array_VarOut_T.cpp b/TAO/tao/Array_VarOut_T.cpp index 712ee76a20a..23fcc598ff1 100644 --- a/TAO/tao/Array_VarOut_T.cpp +++ b/TAO/tao/Array_VarOut_T.cpp @@ -20,7 +20,7 @@ TAO_FixedArray_Var_T<T,T_slice,TAG>::operator= (T_slice * p) if (this->ptr_ != p) { // Delete our stuff and assume ownership of p. - TAO::Array_Traits<T,T_slice,TAG>::free (this->ptr_); + TAO::Array_Traits<FORANY>::free (this->ptr_); this->ptr_ = p; } @@ -35,10 +35,10 @@ TAO_FixedArray_Var_T<T,T_slice,TAG>::operator= ( { if (this != &p) { - TAO::Array_Traits<T,T_slice,TAG>::free (this->ptr_); + TAO::Array_Traits<FORANY>::free (this->ptr_); // Deep copy. - this->ptr_ = TAO::Array_Traits<T,T_slice,TAG>::dup (p.in ()); + this->ptr_ = TAO::Array_Traits<FORANY>::dup (p.in ()); } return *this; @@ -54,7 +54,7 @@ TAO_VarArray_Var_T<T,T_slice,TAG>::operator= (T_slice * p) if (this->ptr_ != p) { // Delete our stuff and assume ownership of p. - TAO::Array_Traits<T,T_slice,TAG>::free (this->ptr_); + TAO::Array_Traits<FORANY>::free (this->ptr_); this->ptr_ = p; } @@ -69,10 +69,10 @@ TAO_VarArray_Var_T<T,T_slice,TAG>::operator= ( { if (this != &p) { - TAO::Array_Traits<T,T_slice,TAG>::free (this->ptr_); + TAO::Array_Traits<FORANY>::free (this->ptr_); // Deep copy. - this->ptr_ = TAO::Array_Traits<T,T_slice,TAG>::dup (p.in ()); + this->ptr_ = TAO::Array_Traits<FORANY>::dup (p.in ()); } return *this; @@ -87,7 +87,7 @@ TAO_Array_Forany_T<T,T_slice,TAG>::_tao_any_destructor ( ) { T_slice * tmp = static_cast<T_slice *> (_tao_void_pointer); - TAO::Array_Traits<T,T_slice,TAG>::free (tmp); + TAO::Array_Traits<FORANY>::free (tmp); } TAO_END_VERSIONED_NAMESPACE_DECL |