summaryrefslogtreecommitdiff
path: root/ACE/tests/MT_Reactor_Timer_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/MT_Reactor_Timer_Test.cpp
parentcfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff)
downloadATCD-9027b24610848c0eb0d768b60b132ce9e09dee7d.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/tests/MT_Reactor_Timer_Test.cpp')
-rw-r--r--ACE/tests/MT_Reactor_Timer_Test.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/tests/MT_Reactor_Timer_Test.cpp b/ACE/tests/MT_Reactor_Timer_Test.cpp
index d37f4a01e92..85cedf6f5c4 100644
--- a/ACE/tests/MT_Reactor_Timer_Test.cpp
+++ b/ACE/tests/MT_Reactor_Timer_Test.cpp
@@ -34,7 +34,7 @@
// destructor for Time_Handler insures that everything happened
// correctly.
-Time_Handler::Time_Handler (void)
+Time_Handler::Time_Handler ()
{
for (int i = 0;
i < Time_Handler::TIMER_SLOTS;
@@ -49,7 +49,7 @@ Time_Handler::Time_Handler (void)
// starts.
void
-Time_Handler::setup (void)
+Time_Handler::setup ()
{
ACE_Reactor *r = ACE_Reactor::instance ();
@@ -66,7 +66,7 @@ Time_Handler::setup (void)
}
int
-Time_Handler::verify_results (void)
+Time_Handler::verify_results ()
{
ACE_TEST_ASSERT (this->timer_id_[0] == Time_Handler::TIMER_FIRED);
ACE_TEST_ASSERT (this->timer_id_[1] == Time_Handler::TIMER_FIRED);
@@ -83,7 +83,7 @@ Time_Handler::verify_results (void)
}
int
-Time_Handler::svc (void)
+Time_Handler::svc ()
{
ACE_Reactor *r = ACE_Reactor::instance ();
@@ -145,7 +145,7 @@ Time_Handler::handle_timeout (const ACE_Time_Value &tv,
#endif /* ACE_HAS_THREADS */
-Dispatch_Count_Handler::Dispatch_Count_Handler (void)
+Dispatch_Count_Handler::Dispatch_Count_Handler ()
{
ACE_Reactor *r = ACE_Reactor::instance ();
@@ -245,7 +245,7 @@ Dispatch_Count_Handler::handle_timeout (const ACE_Time_Value &tv,
}
int
-Dispatch_Count_Handler::verify_results (void)
+Dispatch_Count_Handler::verify_results ()
{
int result = 0;