summaryrefslogtreecommitdiff
path: root/TAO/tao/Pseudo_VarOut_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Pseudo_VarOut_T.inl')
-rw-r--r--TAO/tao/Pseudo_VarOut_T.inl11
1 files changed, 5 insertions, 6 deletions
diff --git a/TAO/tao/Pseudo_VarOut_T.inl b/TAO/tao/Pseudo_VarOut_T.inl
index cee238c4602..92e617d88dd 100644
--- a/TAO/tao/Pseudo_VarOut_T.inl
+++ b/TAO/tao/Pseudo_VarOut_T.inl
@@ -29,7 +29,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>
@@ -37,7 +37,7 @@ ACE_INLINE
TAO_Pseudo_Var_T<T> &
TAO_Pseudo_Var_T<T>::operator= (typename T::_ptr_type p)
{
- ::CORBA::release (this->ptr_);
+ CORBA::release (this->ptr_);
this->ptr_ = p;
return *this;
}
@@ -85,7 +85,7 @@ ACE_INLINE
typename T::_ptr_type &
TAO_Pseudo_Var_T<T>::out (void)
{
- ::CORBA::release (this->ptr_);
+ CORBA::release (this->ptr_);
this->ptr_ = T::_nil ();
return this->ptr_;
}
@@ -123,15 +123,14 @@ ACE_INLINE
TAO_Pseudo_Out_T<T>::TAO_Pseudo_Out_T (typename T::_var_type & p)
: ptr_ (p.out ())
{
- ::CORBA::release (this->ptr_);
+ CORBA::release (this->ptr_);
this->ptr_ = T::_nil ();
}
template <typename T>
ACE_INLINE
TAO_Pseudo_Out_T<T>::TAO_Pseudo_Out_T (
- const TAO_Pseudo_Out_T<T> & p
- )
+ const TAO_Pseudo_Out_T<T> & p)
: ptr_ (p.ptr_)
{}