summaryrefslogtreecommitdiffstats
path: root/c++/src/H5FaccProp.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/H5FaccProp.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/H5FaccProp.h')
-rw-r--r--c++/src/H5FaccProp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5FaccProp.h b/c++/src/H5FaccProp.h
index 27028a2..67394f1 100644
--- a/c++/src/H5FaccProp.h
+++ b/c++/src/H5FaccProp.h
@@ -149,7 +149,7 @@ class H5_DLLCPP FileAccPropList : public PropList {
FileAccPropList(const hid_t plist_id);
// Noop destructor
- virtual ~FileAccPropList() override;
+ virtual ~FileAccPropList() override = default;
#ifndef DOXYGEN_SHOULD_SKIP_THIS