diff options
author | Sean McBride <sean@rogue-research.com> | 2022-01-29 20:21:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-29 20:21:30 (GMT) |
commit | bcf95655354ab9c92f823656ee1722fd91694305 (patch) | |
tree | ca27b1336fe43c0eba16c9c4d706f33ab0940269 | |
parent | 2b3bb3659cc7dca125a6e91080452b71632968cb (diff) | |
download | hdf5-bcf95655354ab9c92f823656ee1722fd91694305.zip hdf5-bcf95655354ab9c92f823656ee1722fd91694305.tar.gz hdf5-bcf95655354ab9c92f823656ee1722fd91694305.tar.bz2 |
Added another missing override keyword on a dtor (#1384)
-rw-r--r-- | c++/src/H5Location.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h index e990ec8..0aec4d2 100644 --- a/c++/src/H5Location.h +++ b/c++/src/H5Location.h @@ -334,7 +334,7 @@ class H5_DLLCPP H5Location : public IdComponent { #endif // DOXYGEN_SHOULD_SKIP_THIS // Noop destructor. - virtual ~H5Location(); + virtual ~H5Location() override; }; // end of H5Location } // namespace H5 |