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/Bug_2540_Regression_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/Bug_2540_Regression_Test.cpp')
-rw-r--r-- | ACE/tests/Bug_2540_Regression_Test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Bug_2540_Regression_Test.cpp b/ACE/tests/Bug_2540_Regression_Test.cpp index fc944ec04da..6d624def926 100644 --- a/ACE/tests/Bug_2540_Regression_Test.cpp +++ b/ACE/tests/Bug_2540_Regression_Test.cpp @@ -47,8 +47,8 @@ public: void simulate_socket_closure(); /// Reactor callback - virtual ACE_HANDLE get_handle() const; - virtual int handle_input(ACE_HANDLE); + ACE_HANDLE get_handle() const override; + int handle_input(ACE_HANDLE) override; private: bool auto_remove_flag_; @@ -78,7 +78,7 @@ public: bool check_expected_results() const; - virtual int handle_timeout(ACE_Time_Value const &, void const*); + int handle_timeout(ACE_Time_Value const &, void const*) override; private: void send_data_through_handlers(); |