summaryrefslogtreecommitdiffstats
path: root/c++/src/H5ArrayType.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/H5ArrayType.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/H5ArrayType.h')
-rw-r--r--c++/src/H5ArrayType.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5ArrayType.h b/c++/src/H5ArrayType.h
index 4302352..b93ae4a 100644
--- a/c++/src/H5ArrayType.h
+++ b/c++/src/H5ArrayType.h
@@ -37,7 +37,7 @@ class H5_DLLCPP ArrayType : public DataType {
// Returns an ArrayType object via DataType* by decoding the
// binary object description of this type.
- virtual DataType *decode() const;
+ virtual DataType *decode() const H5_OVERRIDE;
// Returns the number of dimensions of this array datatype.
int getArrayNDims() const;
@@ -49,7 +49,7 @@ class H5_DLLCPP ArrayType : public DataType {
///\brief Returns this class name.
virtual H5std_string
- fromClass() const
+ fromClass() const H5_OVERRIDE
{
return ("ArrayType");
}
@@ -61,7 +61,7 @@ class H5_DLLCPP ArrayType : public DataType {
ArrayType(const hid_t existing_id);
// Noop destructor
- virtual ~ArrayType();
+ virtual ~ArrayType() H5_OVERRIDE;
// Default constructor
ArrayType();