diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-04-19 09:10:19 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2006-04-19 09:10:19 +0000 |
commit | f9606f4f257e642e04f8c84315b0c8f323fe65e6 (patch) | |
tree | a681f895cf5a9b8a4f7ab6603ee4fd3a55ca0305 /TAO/tao/Pseudo_VarOut_T.inl | |
parent | 10fc1a52ad4bc0d1d3d6716d18f77d04022bd2a8 (diff) | |
download | ATCD-f9606f4f257e642e04f8c84315b0c8f323fe65e6.tar.gz |
ChangeLogTag: Wed Apr 19 07:44:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Pseudo_VarOut_T.inl')
-rw-r--r-- | TAO/tao/Pseudo_VarOut_T.inl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/Pseudo_VarOut_T.inl b/TAO/tao/Pseudo_VarOut_T.inl index 8e5867beac6..cf2df832afc 100644 --- a/TAO/tao/Pseudo_VarOut_T.inl +++ b/TAO/tao/Pseudo_VarOut_T.inl @@ -27,7 +27,7 @@ template <typename T> ACE_INLINE TAO_Pseudo_Var_T<T>::~TAO_Pseudo_Var_T (void) { - CORBA::release (this->ptr_); + ::CORBA::release (this->ptr_); } template <typename T> @@ -35,7 +35,7 @@ ACE_INLINE TAO_Pseudo_Var_T<T> & TAO_Pseudo_Var_T<T>::operator= (T * p) { - CORBA::release (this->ptr_); + ::CORBA::release (this->ptr_); this->ptr_ = p; return *this; } @@ -83,7 +83,7 @@ ACE_INLINE T *& TAO_Pseudo_Var_T<T>::out (void) { - CORBA::release (this->ptr_); + ::CORBA::release (this->ptr_); this->ptr_ = T::_nil (); return this->ptr_; } @@ -121,7 +121,7 @@ ACE_INLINE TAO_Pseudo_Out_T<T,T_var>::TAO_Pseudo_Out_T (T_var & p) : ptr_ (p.out ()) { - CORBA::release (this->ptr_); + ::CORBA::release (this->ptr_); this->ptr_ = T::_nil (); } @@ -153,15 +153,15 @@ TAO_Pseudo_Out_T<T,T_var>::operator= (T * p) template <typename T, typename T_var> ACE_INLINE -TAO_Pseudo_Out_T<T,T_var>::operator T *& () +T *& +TAO_Pseudo_Out_T<T,T_var>::ptr (void) { return this->ptr_; } template <typename T, typename T_var> ACE_INLINE -T *& -TAO_Pseudo_Out_T<T,T_var>::ptr (void) +TAO_Pseudo_Out_T<T,T_var>::operator T *& () { return this->ptr_; } |