summaryrefslogtreecommitdiffstats
path: root/c++/src/H5AtomType.h
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2024-02-09 17:29:55 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2024-02-14 22:11:03 (GMT)
commit6331ddabbbb2f280e2e9e4429e3d8afd8f0f598e (patch)
tree65e41f43267f8790e23da5232e54b4032293e4c1 /c++/src/H5AtomType.h
parentf888fd5892b7d71d2d4a09a52d29f0c77b22dd1b (diff)
downloadhdf5-6331ddabbbb2f280e2e9e4429e3d8afd8f0f598e.zip
hdf5-6331ddabbbb2f280e2e9e4429e3d8afd8f0f598e.tar.gz
hdf5-6331ddabbbb2f280e2e9e4429e3d8afd8f0f598e.tar.bz2
Modern C++ dtor declarations (#1830)
* C++ dtor modernization - Replaced a bunch of empty dtors with `= default` - Removed deprecated `throw()`. In C++11, dtors are `noexcept` by default. *
Diffstat (limited to 'c++/src/H5AtomType.h')
-rw-r--r--c++/src/H5AtomType.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5AtomType.h b/c++/src/H5AtomType.h
index bb2cf48..327604d 100644
--- a/c++/src/H5AtomType.h
+++ b/c++/src/H5AtomType.h
@@ -67,7 +67,7 @@ class H5_DLLCPP AtomType : public DataType {
AtomType(const AtomType &original);
// Noop destructor
- virtual ~AtomType() override;
+ virtual ~AtomType() override = default;
#endif // DOXYGEN_SHOULD_SKIP_THIS
protected: