Replaces the H5_OVERRIDE macro with override (#773)

The macro is no longer necessary now that we require C++11.
This commit is contained in:
Dana Robinson
2021-06-22 20:25:51 -07:00
committed by GitHub
parent 9f5b16bccb
commit a1d128597f
27 changed files with 103 additions and 110 deletions

View File

@@ -44,7 +44,7 @@ class H5_DLLCPP ObjCreatPropList : public PropList {
///\brief Returns this class name.
virtual H5std_string
fromClass() const H5_OVERRIDE
fromClass() const override
{
return ("ObjCreatPropList");
}
@@ -57,7 +57,7 @@ class H5_DLLCPP ObjCreatPropList : public PropList {
ObjCreatPropList(const hid_t plist_id);
// Noop destructor
virtual ~ObjCreatPropList() H5_OVERRIDE;
virtual ~ObjCreatPropList() override;
#ifndef DOXYGEN_SHOULD_SKIP_THIS