Skip to content

Commit

Permalink
Merge pull request openPMD#296 from C0nsultant/fix/overridVirtualRedu…
Browse files Browse the repository at this point in the history
…ndant_followup

Remove remaining redundant virtual specs
  • Loading branch information
C0nsultant authored Jul 13, 2018
2 parents dffe04c + f3e21af commit 3a26c96
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/openPMD/IO/ADIOS/ADIOS1IOHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ namespace openPMD

public:
ADIOS1IOHandler(std::string const& path, AccessType);
virtual ~ADIOS1IOHandler() override;
~ADIOS1IOHandler() override;

virtual std::future< void > flush() override;
std::future< void > flush() override;

virtual void enqueue(IOTask const&) override;
void enqueue(IOTask const&) override;

private:
std::queue< IOTask > m_setup;
Expand All @@ -64,9 +64,9 @@ namespace openPMD

public:
ADIOS1IOHandler(std::string const& path, AccessType);
virtual ~ADIOS1IOHandler() override;
~ADIOS1IOHandler() override;

virtual std::future< void > flush() override;
std::future< void > flush() override;

private:
std::unique_ptr< ADIOS1IOHandlerImpl > m_impl;
Expand Down

0 comments on commit 3a26c96

Please sign in to comment.