summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Location.cpp
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/H5Location.cpp
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/H5Location.cpp')
-rw-r--r--c++/src/H5Location.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp
index 8befefc..87eac67 100644
--- a/c++/src/H5Location.cpp
+++ b/c++/src/H5Location.cpp
@@ -2367,12 +2367,4 @@ f_DataSpace_setId(DataSpace *dspace, hid_t new_id)
dspace->p_setId(new_id);
}
-//--------------------------------------------------------------------------
-// Function: H5Location destructor
-///\brief Noop destructor.
-//--------------------------------------------------------------------------
-H5Location::~H5Location()
-{
-}
-
} // namespace H5