Skip to content

Commit

Permalink
Remove remaining compile warnings/bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
davschneller committed Jul 4, 2024
1 parent 1451923 commit 64047f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion async/as/MPIBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ class MPIBase : public ThreadBase<Executor, InitParameter, Parameter>, private S
return std::max(sizeof(InitParameter), sizeof(Parameter));
}

bool useAsyncCopy() const override {}
// (we require an explicit forward declaration here, to prevent errors due to overloading)
bool useAsyncCopy() const override = 0;

bool useAsyncCopy(unsigned int id) const override {
assert(id < m_executorBuffer.size());
Expand Down
2 changes: 1 addition & 1 deletion submodules/utils

0 comments on commit 64047f0

Please sign in to comment.