summaryrefslogtreecommitdiff
path: root/TAO/tao/Pseudo_VarOut_T.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2013-12-30 09:10:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2013-12-30 09:10:49 +0000
commit04d0ba478d169c55ae02f30bc30d79074a9b2403 (patch)
treeae5b30f2caeb0c0eae3bcefed4a26395f5da6f4c /TAO/tao/Pseudo_VarOut_T.inl
parent0171387f792ef944331975598c3b0d7fd46e8137 (diff)
downloadATCD-04d0ba478d169c55ae02f30bc30d79074a9b2403.tar.gz
Mon Dec 30 09:11:45 UTC 2013 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Pseudo_VarOut_T.inl: * tao/Range_Checking_T.h: Don't use explicit global scope
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_)
{}