diff options
Diffstat (limited to 'include/framework/reconstruction/LevelingPolicy.h')
| -rw-r--r-- | include/framework/reconstruction/LevelingPolicy.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/framework/reconstruction/LevelingPolicy.h b/include/framework/reconstruction/LevelingPolicy.h index 3a0b73e..f0feb53 100644 --- a/include/framework/reconstruction/LevelingPolicy.h +++ b/include/framework/reconstruction/LevelingPolicy.h @@ -24,10 +24,9 @@ public: LevelingPolicy(size_t scale_factor, size_t buffer_size) : m_scale_factor(scale_factor), m_buffer_size(buffer_size) {} - ReconstructionVector - get_reconstruction_tasks(const Version<ShardType, QueryType> *version) const override { - ReconstructionVector reconstructions; - return reconstructions; + std::vector<ReconstructionVector> + get_reconstruction_tasks(const Version<ShardType, QueryType> *version, LockManager &lock_mngr) const override { + return {}; } ReconstructionVector |