]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
osd/PGPeeringEvent: add missing includes
authorMax Kellermann <max.kellermann@ionos.com>
Fri, 1 Nov 2024 09:34:59 +0000 (10:34 +0100)
committerMax Kellermann <max.kellermann@ionos.com>
Sun, 30 Mar 2025 21:00:10 +0000 (23:00 +0200)
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
src/osd/PGPeeringEvent.cc
src/osd/PGPeeringEvent.h

index 2d28c6f84abb68bdc9c56430776ba8a2f11530e5..777d77bd2493ee78dd2443bc096bf75dab73c3a7 100644 (file)
@@ -1,8 +1,8 @@
 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
 // vim: ts=8 sw=2 smarttab
 
-#include "include/mempool.h"
 #include "osd/PGPeeringEvent.h"
+#include "include/mempool.h"
 #include "messages/MOSDPGLog.h"
 
 MEMPOOL_DEFINE_OBJECT_FACTORY(PGPeeringEvent, pg_peering_evt, osd);
index ceabcb799ec610c150019969df6c62e5493ba36f..4d1099d6ff10d19676a388788042cb1d9f3f6889 100644 (file)
@@ -3,6 +3,12 @@
 
 #pragma once
 
+#include <iostream>
+#include <memory>
+#include <sstream>
+#include <string>
+
+#include <boost/intrusive_ptr.hpp>
 #include <boost/statechart/event.hpp>
 
 #include "osd/osd_types.h"