diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-08 14:18:25 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-08 14:18:25 +0100 |
commit | 850b8c2db82b57e489ea352536a3c79898a1c655 (patch) | |
tree | 292d697969af7e7612f4f1e976711a8f4b0c25ff /ACE/tests/Task_Group_Test.cpp | |
parent | dfbe26383cee15ab6859137759b52e86c8888ffe (diff) | |
download | ATCD-850b8c2db82b57e489ea352536a3c79898a1c655.tar.gz |
Make use of override where it should be used instead of virtual
Diffstat (limited to 'ACE/tests/Task_Group_Test.cpp')
-rw-r--r-- | ACE/tests/Task_Group_Test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/tests/Task_Group_Test.cpp b/ACE/tests/Task_Group_Test.cpp index 6ea79c9b501..d46c32597a1 100644 --- a/ACE/tests/Task_Group_Test.cpp +++ b/ACE/tests/Task_Group_Test.cpp @@ -28,7 +28,7 @@ class Waiter_Task : public ACE_Task_Base public: Waiter_Task (ACE_Thread_Manager* tm = 0) : ACE_Task_Base (tm) {} - virtual int svc(); + int svc() override; }; int |