summaryrefslogtreecommitdiff
path: root/TAO/tao/Stub.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Stub.inl')
-rw-r--r--TAO/tao/Stub.inl8
1 files changed, 3 insertions, 5 deletions
diff --git a/TAO/tao/Stub.inl b/TAO/tao/Stub.inl
index dfc4a708bfc..b02fff98755 100644
--- a/TAO/tao/Stub.inl
+++ b/TAO/tao/Stub.inl
@@ -440,7 +440,7 @@ TAO_Stub_Auto_Ptr::release (void)
{
ACE_TRACE ("TAO_Stub_Auto_Ptr::release");
TAO_Stub *old = this->p_;
- this->p_ = 0;
+ this->p_ = nullptr;
return old;
}
@@ -448,7 +448,7 @@ ACE_INLINE void
TAO_Stub_Auto_Ptr::reset (TAO_Stub *p)
{
ACE_TRACE ("TAO_Stub_Auto_Ptr::reset");
- if (this->get () != p && this->get () != 0)
+ if (this->get () != p && this->get () != nullptr)
this->get ()->_decr_refcnt ();
this->p_ = p;
}
@@ -482,12 +482,11 @@ ACE_INLINE
TAO_Stub_Auto_Ptr::~TAO_Stub_Auto_Ptr (void)
{
ACE_TRACE ("TAO_Stub_Auto_Ptr::~TAO_Stub_Auto_Ptr");
- if (this->get() != 0)
+ if (this->get() != nullptr)
this->get ()->_decr_refcnt ();
}
// Accessor methods to the underlying Stub Object
-
ACE_INLINE TAO_Stub &
TAO_Stub_Auto_Ptr::operator *() const
{
@@ -496,5 +495,4 @@ TAO_Stub_Auto_Ptr::operator *() const
return *this->get ();
}
-
TAO_END_VERSIONED_NAMESPACE_DECL