From: Max Kellermann Date: Mon, 8 Sep 2025 18:56:14 +0000 (+0200) Subject: mon/Monitor: forward-declare struct health_check_map_t X-Git-Tag: v21.0.0~50^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F65509%2Fhead;p=ceph.git mon/Monitor: forward-declare struct health_check_map_t Signed-off-by: Max Kellermann --- diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index 7d3ca60e830..2e4bb09ec56 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -36,6 +36,7 @@ #include "osd/OSDMap.h" +#include "health_check.h" #include "MonitorDBStore.h" #include "MonMap.h" #include "Paxos.h" diff --git a/src/mon/Monitor.h b/src/mon/Monitor.h index b73e6cc73f6..c8574b98529 100644 --- a/src/mon/Monitor.h +++ b/src/mon/Monitor.h @@ -33,7 +33,6 @@ #include "common/Timer.h" -#include "health_check.h" #include "Elector.h" #include "Session.h" #include "MonCommand.h" @@ -55,6 +54,7 @@ #include "mon/MonOpRequest.h" #include "common/WorkQueue.h" +struct health_check_map_t; class Messenger; class MonMap;