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

@@ -32,7 +32,7 @@ class H5_DLLCPP LinkCreatPropList : public PropList {
///\brief Returns this class name.
virtual H5std_string
fromClass() const H5_OVERRIDE
fromClass() const override
{
return ("LinkCreatPropList");
}
@@ -59,7 +59,7 @@ class H5_DLLCPP LinkCreatPropList : public PropList {
H5T_cset_t getCharEncoding() const;
// Noop destructor
virtual ~LinkCreatPropList() H5_OVERRIDE;
virtual ~LinkCreatPropList() override;
#ifndef DOXYGEN_SHOULD_SKIP_THIS