From: Max Kellermann Date: Wed, 16 Oct 2024 15:57:22 +0000 (+0200) Subject: common/assert: add missing includes X-Git-Tag: v20.0.0~283^2~22 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ebe54a108800d7aa4929dd8c6a2c28699cef1bed;p=ceph.git common/assert: add missing includes Signed-off-by: Max Kellermann --- diff --git a/src/common/assert.cc b/src/common/assert.cc index 68ad99c878e..b9709e58dde 100644 --- a/src/common/assert.cc +++ b/src/common/assert.cc @@ -12,8 +12,17 @@ * */ +#include "include/ceph_assert.h" + +#include + #include "include/compat.h" +#include "common/BackTrace.h" +#include "common/Clock.h" // for ceph_clock_now() #include "common/debug.h" +#include "log/Log.h" + +#include using std::ostringstream;