summaryrefslogtreecommitdiff
path: root/ACE/tests/Task_Group_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Task_Group_Test.cpp')
-rw-r--r--ACE/tests/Task_Group_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/tests/Task_Group_Test.cpp b/ACE/tests/Task_Group_Test.cpp
index 93017948af8..d46c32597a1 100644
--- a/ACE/tests/Task_Group_Test.cpp
+++ b/ACE/tests/Task_Group_Test.cpp
@@ -28,11 +28,11 @@ class Waiter_Task : public ACE_Task_Base
public:
Waiter_Task (ACE_Thread_Manager* tm = 0)
: ACE_Task_Base (tm) {}
- virtual int svc(void);
+ int svc() override;
};
int
-Waiter_Task::svc(void)
+Waiter_Task::svc()
{
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("(%t|grp_id=%d) waiting for thread cancellation.\n"), this->grp_id ()));