summaryrefslogtreecommitdiffstats
path: root/c++/src
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2022-01-29 20:21:30 (GMT)
committerGitHub <noreply@github.com>2022-01-29 20:21:30 (GMT)
commitbcf95655354ab9c92f823656ee1722fd91694305 (patch)
treeca27b1336fe43c0eba16c9c4d706f33ab0940269 /c++/src
parent2b3bb3659cc7dca125a6e91080452b71632968cb (diff)
downloadhdf5-bcf95655354ab9c92f823656ee1722fd91694305.zip
hdf5-bcf95655354ab9c92f823656ee1722fd91694305.tar.gz
hdf5-bcf95655354ab9c92f823656ee1722fd91694305.tar.bz2
Added another missing override keyword on a dtor (#1384)
Diffstat (limited to 'c++/src')
-rw-r--r--c++/src/H5Location.h2
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