summaryrefslogtreecommitdiff
path: root/ACE/ace/POSIX_Asynch_IO.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 11:29:25 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 11:29:25 +0100
commit1fc878a9a7f5b1393610a7c47498a0c9904fb8a4 (patch)
treed12bca7c5b3d7b0b4debfb52e91a2a89cdb8dd12 /ACE/ace/POSIX_Asynch_IO.cpp
parentc62ecd5955c1350fa25f95deb9bce2c81bc70f1c (diff)
downloadATCD-1fc878a9a7f5b1393610a7c47498a0c9904fb8a4.tar.gz
Use C++11 override
Diffstat (limited to 'ACE/ace/POSIX_Asynch_IO.cpp')
-rw-r--r--ACE/ace/POSIX_Asynch_IO.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/POSIX_Asynch_IO.cpp b/ACE/ace/POSIX_Asynch_IO.cpp
index 2b29515b934..c66c2c19083 100644
--- a/ACE/ace/POSIX_Asynch_IO.cpp
+++ b/ACE/ace/POSIX_Asynch_IO.cpp
@@ -1734,7 +1734,7 @@ public:
ACE_POSIX_Asynch_Transmit_File_Result *result);
/// Destructor.
- virtual ~ACE_POSIX_Asynch_Transmit_Handler (void);
+ ~ACE_POSIX_Asynch_Transmit_Handler (void) override;
/// Do the transmission. All the info to do the transmission is in
/// the <result> member.
@@ -1775,10 +1775,10 @@ protected:
size_t bytes_transferred_;
/// This is called when asynchronous writes from the socket complete.
- virtual void handle_write_stream (const ACE_Asynch_Write_Stream::Result &result);
+ void handle_write_stream (const ACE_Asynch_Write_Stream::Result &result) override;
/// This is called when asynchronous reads from the file complete.
- virtual void handle_read_file (const ACE_Asynch_Read_File::Result &result);
+ void handle_read_file (const ACE_Asynch_Read_File::Result &result) override;
/// Issue asynch read from the file.
int initiate_read_file (void);