summaryrefslogtreecommitdiffstats
path: root/c++/src/H5LaccProp.h
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2021-04-21 03:10:04 (GMT)
committerGitHub <noreply@github.com>2021-04-21 03:10:04 (GMT)
commit99d5505ad1129fcad29c6c28bc689fe6bcf3b778 (patch)
tree1123289c72ab7e22b2a85d0dab71d0d67cc164ed /c++/src/H5LaccProp.h
parent9a8b91eb30156738a8ba382add78f1721d7eb6cf (diff)
downloadhdf5-99d5505ad1129fcad29c6c28bc689fe6bcf3b778.zip
hdf5-99d5505ad1129fcad29c6c28bc689fe6bcf3b778.tar.gz
hdf5-99d5505ad1129fcad29c6c28bc689fe6bcf3b778.tar.bz2
Added more C++11 override keywords (#485)
* Added more C++11 override keywords * Format updates in src/H5Tconv.c. * Committing clang-format changes Co-authored-by: Larry Knox <lrknox@hdfgroup.org> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'c++/src/H5LaccProp.h')
-rw-r--r--c++/src/H5LaccProp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/src/H5LaccProp.h b/c++/src/H5LaccProp.h
index 4fa516c..65a9673 100644
--- a/c++/src/H5LaccProp.h
+++ b/c++/src/H5LaccProp.h
@@ -32,7 +32,7 @@ class H5_DLLCPP LinkAccPropList : public PropList {
///\brief Returns this class name.
virtual H5std_string
- fromClass() const
+ fromClass() const H5_OVERRIDE
{
return ("LinkAccPropList");
}
@@ -52,7 +52,7 @@ class H5_DLLCPP LinkAccPropList : public PropList {
size_t getNumLinks() const;
// Noop destructor
- virtual ~LinkAccPropList();
+ virtual ~LinkAccPropList() H5_OVERRIDE;
#ifndef DOXYGEN_SHOULD_SKIP_THIS