summaryrefslogtreecommitdiff
path: root/ACE/ace/Cleanup.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
commit6f91193f0b537d437645ae9e10823a519f547888 (patch)
tree224ad9643523a625196045f37ead1a4e73ddc1f9 /ACE/ace/Cleanup.inl
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Cleanup.inl')
-rw-r--r--ACE/ace/Cleanup.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Cleanup.inl b/ACE/ace/Cleanup.inl
index fdae3412f65..44b8ce91d22 100644
--- a/ACE/ace/Cleanup.inl
+++ b/ACE/ace/Cleanup.inl
@@ -2,24 +2,24 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
-ACE_Cleanup::ACE_Cleanup (void)
+ACE_Cleanup::ACE_Cleanup ()
{
}
ACE_INLINE void*
-ACE_Cleanup_Info_Node::object(void)
+ACE_Cleanup_Info_Node::object()
{
return this->object_;
}
ACE_INLINE ACE_CLEANUP_FUNC
-ACE_Cleanup_Info_Node::cleanup_hook (void)
+ACE_Cleanup_Info_Node::cleanup_hook ()
{
return this->cleanup_hook_;
}
ACE_INLINE void *
-ACE_Cleanup_Info_Node::param (void)
+ACE_Cleanup_Info_Node::param ()
{
return this->param_;
}