summaryrefslogtreecommitdiffstats
path: root/c++/src/H5AtomType.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/H5AtomType.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/H5AtomType.cpp')
-rw-r--r--c++/src/H5AtomType.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/c++/src/H5AtomType.cpp b/c++/src/H5AtomType.cpp
index db6c8f8..f2e037a 100644
--- a/c++/src/H5AtomType.cpp
+++ b/c++/src/H5AtomType.cpp
@@ -276,14 +276,4 @@ AtomType::setPad(H5T_pad_t lsb, H5T_pad_t msb) const
}
}
-#ifndef DOXYGEN_SHOULD_SKIP_THIS
-//--------------------------------------------------------------------------
-// Function: AtomType destructor
-///\brief Noop destructor.
-//--------------------------------------------------------------------------
-AtomType::~AtomType()
-{
-}
-#endif // DOXYGEN_SHOULD_SKIP_THIS
-
} // namespace H5