mirror of
https://github.com/ceph/ceph
synced 2025-01-04 10:12:30 +00:00
common: Fix missing utility include
See: https://en.cppreference.com/w/cpp/utility/move Detected on FreeBSD/Clang/libc++: /home/jenkins/workspace/ceph-master-compile/src/common/deleter.h:111:43: error: no member named 'move' in namespace 'std' impl(deleter next) : refs(1), next(std::move(next)) {} Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
This commit is contained in:
parent
1f28c06f2a
commit
174055edfb
@ -25,6 +25,7 @@
|
||||
#include <atomic>
|
||||
#include <cstdlib>
|
||||
#include <new>
|
||||
#include <utility>
|
||||
|
||||
/// \addtogroup memory-module
|
||||
/// @{
|
||||
|
Loading…
Reference in New Issue
Block a user