summaryrefslogtreecommitdiff
path: root/TAO/tao/Endpoint.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 16:47:37 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 16:47:37 +0100
commit7d210e952de2ccfd2ac758dbacd7b752da8769e9 (patch)
tree0e970def70c96a3c19d5f0d37cd17d678f70c9a0 /TAO/tao/Endpoint.cpp
parent884dcea8b196f72cb995de9f46d61a6ee6521222 (diff)
downloadATCD-7d210e952de2ccfd2ac758dbacd7b752da8769e9.tar.gz
Removed redundant void, use nullptr/override in the TAO core
Diffstat (limited to 'TAO/tao/Endpoint.cpp')
-rw-r--r--TAO/tao/Endpoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/Endpoint.cpp b/TAO/tao/Endpoint.cpp
index f6bd16c9dd0..2fc670189d8 100644
--- a/TAO/tao/Endpoint.cpp
+++ b/TAO/tao/Endpoint.cpp
@@ -7,14 +7,14 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-TAO_Endpoint::~TAO_Endpoint (void)
+TAO_Endpoint::~TAO_Endpoint ()
{
}
TAO_Endpoint *
TAO_Endpoint::next_filtered (TAO_ORB_Core *, TAO_Endpoint *root)
{
- if (root == 0)
+ if (root == nullptr)
return this;
return this->next();
}