summaryrefslogtreecommitdiff
path: root/ACE/tests/Timer_Queue_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/Timer_Queue_Test.cpp
parentcfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff)
downloadATCD-9027b24610848c0eb0d768b60b132ce9e09dee7d.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/tests/Timer_Queue_Test.cpp')
-rw-r--r--ACE/tests/Timer_Queue_Test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Timer_Queue_Test.cpp b/ACE/tests/Timer_Queue_Test.cpp
index 563c988b984..298f25353d3 100644
--- a/ACE/tests/Timer_Queue_Test.cpp
+++ b/ACE/tests/Timer_Queue_Test.cpp
@@ -52,7 +52,7 @@ static long *timer_ids = 0;
class Example_Handler : public ACE_Event_Handler
{
public:
- Example_Handler (void): close_count_ (0) {}
+ Example_Handler (): close_count_ (0) {}
virtual int handle_close (ACE_HANDLE, ACE_Reactor_Mask mask)
{
@@ -82,7 +82,7 @@ public:
struct Interval_Handler : public ACE_Event_Handler
{
- Interval_Handler (void) : trip_count_ (0) { }
+ Interval_Handler () : trip_count_ (0) { }
virtual int handle_timeout (const ACE_Time_Value & , const void *)
{
@@ -521,7 +521,7 @@ test_performance (ACE_Timer_Queue *tq,
// of ACE_Timer_Heap timer IDs around the boundary of having to enlarge
// the heap.
static void
-test_unique_timer_heap_ids (void)
+test_unique_timer_heap_ids ()
{
Example_Handler eh;
ACE_Timer_Heap timer_heap (44);