summaryrefslogtreecommitdiff
path: root/ACE/tests/Reactor_Exceptions_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:04:35 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 08:04:35 +0100
commit9027b24610848c0eb0d768b60b132ce9e09dee7d (patch)
treef2b313d8110861616f330776f20f1df0c348cc0b /ACE/tests/Reactor_Exceptions_Test.cpp
parentcfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff)
downloadATCD-9027b24610848c0eb0d768b60b132ce9e09dee7d.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/tests/Reactor_Exceptions_Test.cpp')
-rw-r--r--ACE/tests/Reactor_Exceptions_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/tests/Reactor_Exceptions_Test.cpp b/ACE/tests/Reactor_Exceptions_Test.cpp
index fe06d7813a9..ba3c3f4a9d9 100644
--- a/ACE/tests/Reactor_Exceptions_Test.cpp
+++ b/ACE/tests/Reactor_Exceptions_Test.cpp
@@ -20,7 +20,7 @@
class Except {};
static void
-throw_exception (void)
+throw_exception ()
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%P|%t) throw exception\n")));
@@ -32,7 +32,7 @@ class My_Handler : public ACE_Event_Handler, public ACE_SOCK_Dgram
public:
My_Handler (const ACE_INET_Addr &local_addr);
- virtual ACE_HANDLE get_handle (void) const;
+ virtual ACE_HANDLE get_handle () const;
virtual int handle_input (ACE_HANDLE handle);
};
@@ -42,7 +42,7 @@ My_Handler::My_Handler (const ACE_INET_Addr &local_addr)
}
ACE_HANDLE
-My_Handler::get_handle (void) const
+My_Handler::get_handle () const
{
return ACE_SOCK_Dgram::get_handle ();
}
@@ -102,7 +102,7 @@ public:
#if defined (ACE_HAS_THREADS)
static int
-worker (void)
+worker ()
{
ACE_Reactor::instance ()->owner (ACE_OS::thr_self ());