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:
Willem Jan Withagen 2021-12-21 10:10:17 +01:00
parent 1f28c06f2a
commit 174055edfb

View File

@ -25,6 +25,7 @@
#include <atomic>
#include <cstdlib>
#include <new>
#include <utility>
/// \addtogroup memory-module
/// @{