summaryrefslogtreecommitdiff
path: root/ACE/tests/Bug_2540_Regression_Test.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 14:18:25 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 14:18:25 +0100
commit850b8c2db82b57e489ea352536a3c79898a1c655 (patch)
tree292d697969af7e7612f4f1e976711a8f4b0c25ff /ACE/tests/Bug_2540_Regression_Test.cpp
parentdfbe26383cee15ab6859137759b52e86c8888ffe (diff)
downloadATCD-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.cpp6
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();