to silence compiler warnings.
e.g. (ceph_dedup_tool.cc:1104:32: warning: unqualified call to
'std::move' [-Wunqualified-std-cast-call]
estimate_threads.push_back(move(ptr));
^
std::
Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
max_seconds));
ptr->create("estimate_thread");
ptr->set_debug(debug);
- estimate_threads.push_back(move(ptr));
+ estimate_threads.push_back(std::move(ptr));
}
glock.unlock();
new ChunkScrub(io_ctx, i, max_thread, begin, end, chunk_io_ctx,
report_period, s.num_objects));
ptr->create("estimate_thread");
- estimate_threads.push_back(move(ptr));
+ estimate_threads.push_back(std::move(ptr));
}
glock.unlock();