summaryrefslogtreecommitdiff
path: root/ACE/ace/LSOCK_Acceptor.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/LSOCK_Acceptor.cpp
parent884dcea8b196f72cb995de9f46d61a6ee6521222 (diff)
downloadATCD-703b0e6522f91e7de7b09b03d68b28623fd0dd17.tar.gz
Remove redundant void from the core ACE library files
Diffstat (limited to 'ACE/ace/LSOCK_Acceptor.cpp')
-rw-r--r--ACE/ace/LSOCK_Acceptor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/LSOCK_Acceptor.cpp b/ACE/ace/LSOCK_Acceptor.cpp
index 28a45ea3faa..1dc0cf8f998 100644
--- a/ACE/ace/LSOCK_Acceptor.cpp
+++ b/ACE/ace/LSOCK_Acceptor.cpp
@@ -30,7 +30,7 @@ ACE_LSOCK_Acceptor::get_local_addr (ACE_Addr &a) const
}
void
-ACE_LSOCK_Acceptor::dump (void) const
+ACE_LSOCK_Acceptor::dump () const
{
#if defined (ACE_HAS_DUMP)
ACE_TRACE ("ACE_LSOCK_Acceptor::dump");
@@ -43,7 +43,7 @@ ACE_LSOCK_Acceptor::dump (void) const
// Do nothing routine for constructor.
-ACE_LSOCK_Acceptor::ACE_LSOCK_Acceptor (void)
+ACE_LSOCK_Acceptor::ACE_LSOCK_Acceptor ()
{
ACE_TRACE ("ACE_LSOCK_Acceptor::ACE_LSOCK_Acceptor");
}
@@ -131,7 +131,7 @@ ACE_LSOCK_Acceptor::accept (ACE_LSOCK_Stream &new_stream,
// from the file system.
int
-ACE_LSOCK_Acceptor::remove (void)
+ACE_LSOCK_Acceptor::remove ()
{
ACE_TRACE ("ACE_LSOCK_Acceptor::remove");
int result = this->close ();