summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_And_Filter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_And_Filter.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_And_Filter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_And_Filter.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_And_Filter.cpp
index 10d6b5aa22d..0e9b80f7c7d 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_And_Filter.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_And_Filter.cpp
@@ -24,10 +24,10 @@ TAO_EC_And_Filter::~TAO_EC_And_Filter ()
++i)
{
delete *i;
- *i = 0;
+ *i = nullptr;
}
delete[] this->children_;
- this->children_ = 0;
+ this->children_ = nullptr;
this->n_ = 0;
}
@@ -62,7 +62,7 @@ TAO_EC_And_Filter::filter (const RtecEventComm::EventSet& event,
}
// All children accepted the event, push up...
- if (this->parent () != 0)
+ if (this->parent () != nullptr)
{
this->parent ()->push (event, qos_info);
}
@@ -83,7 +83,7 @@ TAO_EC_And_Filter::filter_nocopy (RtecEventComm::EventSet& event,
}
// All children accepted the event, push up...
- if (this->parent () != 0)
+ if (this->parent () != nullptr)
{
this->parent ()->push (event, qos_info);
}