1
0
Fork 0

fix annoying compiler warning

This commit is contained in:
jsteemann 2018-07-12 20:27:59 +02:00
parent 0905a7eab6
commit 3918c66399
1 changed files with 3 additions and 2 deletions

View File

@ -439,9 +439,10 @@ class SingleRemoteOperationBlock final : public ExecutionBlock {
/// @brief skipSome
std::pair<ExecutionState, size_t> skipSome(size_t atMost) override final;
Type getType() const {return Type::SINGLEOPERATION; }
private:
Type getType() const override {return Type::SINGLEOPERATION; }
private:
/// @brief _colectionName: the name of the sharded collection
Collection const* _collection;