summaryrefslogtreecommitdiff
path: root/TAO/tao/TSS_Resources.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TSS_Resources.cpp')
-rw-r--r--TAO/tao/TSS_Resources.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/TSS_Resources.cpp b/TAO/tao/TSS_Resources.cpp
index 9f1d44141a6..2e13d8d2271 100644
--- a/TAO/tao/TSS_Resources.cpp
+++ b/TAO/tao/TSS_Resources.cpp
@@ -4,10 +4,10 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-TAO_TSS_Resources::TAO_TSS_Resources (void)
- : poa_current_impl_ (0)
- , rtscheduler_current_impl_ (0)
- , rtscheduler_previous_current_impl_ (0)
+TAO_TSS_Resources::TAO_TSS_Resources ()
+ : poa_current_impl_ (nullptr)
+ , rtscheduler_current_impl_ (nullptr)
+ , rtscheduler_previous_current_impl_ (nullptr)
, rtcorba_current_priority_ (-1) // RTCORBA::minPriority - 1
, default_environment_ (&tss_environment_)
@@ -16,20 +16,20 @@ TAO_TSS_Resources::TAO_TSS_Resources (void)
, policy_current_ (&initial_policy_current_)
#endif /* TAO_HAS_CORBA_MESSAGING == 1 */
- , gui_resource_factory_ (0)
+ , gui_resource_factory_ (nullptr)
#if (TAO_HAS_TRANSPORT_CURRENT == 1)
- , tsg_ (0)
+ , tsg_ (nullptr)
#endif /* TAO_HAS_TRANSPORT_CURRENT */
{
}
-TAO_TSS_Resources::~TAO_TSS_Resources (void)
+TAO_TSS_Resources::~TAO_TSS_Resources ()
{
delete this->gui_resource_factory_;
}
TAO_TSS_Resources *
-TAO_TSS_Resources::instance (void)
+TAO_TSS_Resources::instance ()
{
// Hide the template instantiation to prevent multiple instances
// from being created.