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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user