summaryrefslogtreecommitdiffstats
path: root/c++/src/H5CompType.cpp
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2024-02-09 17:29:55 (GMT)
committerGitHub <noreply@github.com>2024-02-09 17:29:55 (GMT)
commit623907f39764b043ca6205a00663fa325bb17e97 (patch)
tree2172293fc172ea3d83fb885c93768f3394e37dea /c++/src/H5CompType.cpp
parent33bb1970b8b010ebb503aaf7def46bafd87d9d9b (diff)
downloadhdf5-623907f39764b043ca6205a00663fa325bb17e97.zip
hdf5-623907f39764b043ca6205a00663fa325bb17e97.tar.gz
hdf5-623907f39764b043ca6205a00663fa325bb17e97.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/H5CompType.cpp')
-rw-r--r--c++/src/H5CompType.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/c++/src/H5CompType.cpp b/c++/src/H5CompType.cpp
index c89fa5c..70bbe66 100644
--- a/c++/src/H5CompType.cpp
+++ b/c++/src/H5CompType.cpp
@@ -527,12 +527,4 @@ CompType::setSize(size_t size) const
}
}
-//--------------------------------------------------------------------------
-// Function: CompType destructor
-///\brief Properly terminates access to this compound datatype.
-//--------------------------------------------------------------------------
-CompType::~CompType()
-{
-}
-
} // namespace H5