summaryrefslogtreecommitdiff
path: root/ACE/ace/DEV.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/DEV.cpp
parent884dcea8b196f72cb995de9f46d61a6ee6521222 (diff)
downloadATCD-703b0e6522f91e7de7b09b03d68b28623fd0dd17.tar.gz
Remove redundant void from the core ACE library files
Diffstat (limited to 'ACE/ace/DEV.cpp')
-rw-r--r--ACE/ace/DEV.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/DEV.cpp b/ACE/ace/DEV.cpp
index 08a7e581f59..ca87efd7056 100644
--- a/ACE/ace/DEV.cpp
+++ b/ACE/ace/DEV.cpp
@@ -17,7 +17,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_ALLOC_HOOK_DEFINE(ACE_DEV)
void
-ACE_DEV::dump (void) const
+ACE_DEV::dump () const
{
#if defined (ACE_HAS_DUMP)
ACE_TRACE ("ACE_DEV::dump");
@@ -26,7 +26,7 @@ ACE_DEV::dump (void) const
// This is the do-nothing constructor.
-ACE_DEV::ACE_DEV (void)
+ACE_DEV::ACE_DEV ()
{
ACE_TRACE ("ACE_DEV::ACE_DEV");
}
@@ -34,7 +34,7 @@ ACE_DEV::ACE_DEV (void)
// Close the device
int
-ACE_DEV::close (void)
+ACE_DEV::close ()
{
ACE_TRACE ("ACE_DEV::close");
int result = ACE_OS::close (this->get_handle ());