summaryrefslogtreecommitdiff
path: root/ACE/ace/Cleanup.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 15:20:51 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 15:20:51 +0100
commit703b0e6522f91e7de7b09b03d68b28623fd0dd17 (patch)
treef63091592635215d03b258aab058e3169b5683ad /ACE/ace/Cleanup.cpp
parent884dcea8b196f72cb995de9f46d61a6ee6521222 (diff)
downloadATCD-703b0e6522f91e7de7b09b03d68b28623fd0dd17.tar.gz
Remove redundant void from the core ACE library files
Diffstat (limited to 'ACE/ace/Cleanup.cpp')
-rw-r--r--ACE/ace/Cleanup.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Cleanup.cpp b/ACE/ace/Cleanup.cpp
index 0e162c8cf3b..46b3c7e7582 100644
--- a/ACE/ace/Cleanup.cpp
+++ b/ACE/ace/Cleanup.cpp
@@ -20,7 +20,7 @@ ACE_Cleanup::cleanup (void *)
delete this;
}
-ACE_Cleanup::~ACE_Cleanup (void)
+ACE_Cleanup::~ACE_Cleanup ()
{
}
@@ -34,7 +34,7 @@ ACE_CLEANUP_DESTROYER_NAME (ACE_Cleanup *object, void *param)
/*****************************************************************************/
-ACE_Cleanup_Info_Node::ACE_Cleanup_Info_Node (void)
+ACE_Cleanup_Info_Node::ACE_Cleanup_Info_Node ()
: object_ (0),
cleanup_hook_ (0),
param_ (0),
@@ -53,7 +53,7 @@ ACE_Cleanup_Info_Node::ACE_Cleanup_Info_Node (void *object,
{
}
-ACE_Cleanup_Info_Node::~ACE_Cleanup_Info_Node (void)
+ACE_Cleanup_Info_Node::~ACE_Cleanup_Info_Node ()
{
if (this->name_)
#if defined (ACE_HAS_ALLOC_HOOKS)
@@ -82,11 +82,11 @@ ACE_Cleanup_Info_Node::operator!= (const ACE_Cleanup_Info_Node &o) const
/*****************************************************************************/
-ACE_OS_Exit_Info::ACE_OS_Exit_Info (void)
+ACE_OS_Exit_Info::ACE_OS_Exit_Info ()
{
}
-ACE_OS_Exit_Info::~ACE_OS_Exit_Info (void)
+ACE_OS_Exit_Info::~ACE_OS_Exit_Info ()
{
}
@@ -153,7 +153,7 @@ ACE_OS_Exit_Info::remove (void *object)
void
-ACE_OS_Exit_Info::call_hooks (void)
+ACE_OS_Exit_Info::call_hooks ()
{
// Call all registered cleanup hooks, in reverse order of
// registration.