summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp b/TAO/orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp
index fce5908ebc4..8c36dc6b44c 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_Mcast_EH.cpp
@@ -19,7 +19,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_ECG_Mcast_EH::TAO_ECG_Mcast_EH (TAO_ECG_Dgram_Handler *recv,
const ACE_TCHAR *net_if,
CORBA::ULong sz)
- : net_if_ (net_if ? ACE_OS::strdup (net_if) : 0)
+ : net_if_ (net_if ? ACE_OS::strdup (net_if) : nullptr)
, subscriptions_ ()
, receiver_ (recv)
, recvbuf_size_ (sz)
@@ -91,11 +91,11 @@ TAO_ECG_Mcast_EH::shutdown ()
if (this->observer_.in ())
{
this->observer_->shutdown ();
- this->observer_ = 0;
+ this->observer_ = nullptr;
}
// Indicates that we are in a shutdown state.
- this->receiver_ = 0;
+ this->receiver_ = nullptr;
// Deregister from reactor, close and clean up sockets.
size_t const subscriptions_size = this->subscriptions_.size ();
@@ -305,7 +305,7 @@ TAO_ECG_Mcast_EH::Observer::update_supplier (
void
TAO_ECG_Mcast_EH::Observer::shutdown ()
{
- this->eh_ = 0;
+ this->eh_ = nullptr;
this->deactivator_.deactivate ();
}