mirror of https://gitee.com/bigwinds/arangodb
fix annoying compiler warning
This commit is contained in:
parent
0905a7eab6
commit
3918c66399
|
@ -439,9 +439,10 @@ class SingleRemoteOperationBlock final : public ExecutionBlock {
|
||||||
|
|
||||||
/// @brief skipSome
|
/// @brief skipSome
|
||||||
std::pair<ExecutionState, size_t> skipSome(size_t atMost) override final;
|
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
|
/// @brief _colectionName: the name of the sharded collection
|
||||||
Collection const* _collection;
|
Collection const* _collection;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue