]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
osd/PGLog: add missing include
authorMax Kellermann <max.kellermann@ionos.com>
Sun, 27 Oct 2024 12:48:14 +0000 (13:48 +0100)
committerMax Kellermann <max.kellermann@ionos.com>
Sun, 30 Mar 2025 20:58:56 +0000 (22:58 +0200)
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
src/osd/PGLog.h

index 4f2a17b1778e17842b7603e37d99dcc01362bf04..c7feb870268441dc3d18d58bdca7ac54b68f6f07 100644 (file)
  */
 #pragma once
 
+#include "common/ceph_context.h"
+#include "common/debug.h"
 // re-include our assert to clobber boost's
 #include "include/ceph_assert.h"
 #include "include/common_fwd.h"
 #include "osd_types.h"
 #include "os/ObjectStore.h"
+
+#include <iosfwd>
+#include <map>
+#include <memory>
 #include <list>
+#include <set>
+#include <string>
 #include <unordered_map>
+#include <vector>
 
 #ifdef WITH_SEASTAR
 #include <seastar/core/future.hh>