summaryrefslogtreecommitdiffstats
path: root/c++/src/H5IntType.h
diff options
context:
space:
mode:
Diffstat (limited to 'c++/src/H5IntType.h')
-rw-r--r--c++/src/H5IntType.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/src/H5IntType.h b/c++/src/H5IntType.h
index f0f30ac..ec3dd19 100644
--- a/c++/src/H5IntType.h
+++ b/c++/src/H5IntType.h
@@ -36,7 +36,7 @@ class H5_DLLCPP IntType : public AtomType {
// Returns an IntType object via DataType* by decoding the
// binary object description of this type.
- virtual DataType *decode() const H5_OVERRIDE;
+ virtual DataType *decode() const override;
// Retrieves the sign type for an integer type
H5T_sign_t getSign() const;
@@ -46,7 +46,7 @@ class H5_DLLCPP IntType : public AtomType {
///\brief Returns this class name.
virtual H5std_string
- fromClass() const H5_OVERRIDE
+ fromClass() const override
{
return ("IntType");
}
@@ -61,7 +61,7 @@ class H5_DLLCPP IntType : public AtomType {
IntType(const IntType &original);
// Noop destructor.
- virtual ~IntType() H5_OVERRIDE;
+ virtual ~IntType() override;
}; // end of IntType
} // namespace H5