summaryrefslogtreecommitdiff
path: root/TAO/tao/ORB_Core_TSS_Resources.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/ORB_Core_TSS_Resources.cpp')
-rw-r--r--TAO/tao/ORB_Core_TSS_Resources.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/ORB_Core_TSS_Resources.cpp b/TAO/tao/ORB_Core_TSS_Resources.cpp
index 7e554596102..f59d131c6d6 100644
--- a/TAO/tao/ORB_Core_TSS_Resources.cpp
+++ b/TAO/tao/ORB_Core_TSS_Resources.cpp
@@ -3,29 +3,29 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-TAO_ORB_Core_TSS_Resources::TAO_ORB_Core_TSS_Resources (void)
+TAO_ORB_Core_TSS_Resources::TAO_ORB_Core_TSS_Resources ()
: event_loop_thread_ (0)
, client_leader_thread_ (0)
- , lane_ (0)
+ , lane_ (nullptr)
, ts_objects_ ()
, upcalls_temporarily_suspended_on_this_thread_ (false)
- , orb_core_ (0)
+ , orb_core_ (nullptr)
{
}
-TAO_ORB_Core_TSS_Resources::~TAO_ORB_Core_TSS_Resources (void)
+TAO_ORB_Core_TSS_Resources::~TAO_ORB_Core_TSS_Resources ()
{
this->fini ();
}
void
-TAO_ORB_Core_TSS_Resources::fini (void)
+TAO_ORB_Core_TSS_Resources::fini ()
{
- if (this->orb_core_ != 0)
+ if (this->orb_core_ != nullptr)
{
this->orb_core_->tss_cleanup (this->ts_objects_);
}
- this->orb_core_ = 0;
+ this->orb_core_ = nullptr;
}
TAO_END_VERSIONED_NAMESPACE_DECL