summaryrefslogtreecommitdiff
path: root/ACE/ace/Asynch_IO.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-10-12 15:56:08 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-10-12 15:56:08 +0200
commit9084da95c561f11fc84e449e4e19324eecddda1e (patch)
treee27916861713364a4be66ac2d4793e8c2eb565ff /ACE/ace/Asynch_IO.h
parent9b7415a3b4113b96fb0e456681df99f064d14088 (diff)
downloadATCD-9084da95c561f11fc84e449e4e19324eecddda1e.tar.gz
Use default destructor
* ACE/ASNMP/asnmp/oid.cpp: * ACE/ace/ATM_Addr.cpp: * ACE/ace/ATM_Addr.h: * ACE/ace/Asynch_IO.cpp: * ACE/ace/Asynch_IO.h: * ACE/ace/MEM_Addr.cpp: * ACE/ace/MEM_Addr.h: * TAO/tests/OctetSeq/README:
Diffstat (limited to 'ACE/ace/Asynch_IO.h')
-rw-r--r--ACE/ace/Asynch_IO.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Asynch_IO.h b/ACE/ace/Asynch_IO.h
index f31d5d0a42b..819eed30e7c 100644
--- a/ACE/ace/Asynch_IO.h
+++ b/ACE/ace/Asynch_IO.h
@@ -253,11 +253,11 @@ public:
ACE_Proactor* proactor () const;
/// Destructor.
- virtual ~ACE_Asynch_Operation (void);
+ virtual ~ACE_Asynch_Operation () = default;
protected:
/// Constructor.
- ACE_Asynch_Operation (void);
+ ACE_Asynch_Operation () = default;
/// Return the underlying implementation class.
virtual ACE_Asynch_Operation_Impl *implementation () const = 0;