Skip to content

Commit 7115d6c

Browse files
committed
msg/compressor_registry: add missing includes
Signed-off-by: Max Kellermann <[email protected]>
1 parent 99cb01a commit 7115d6c

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/msg/compressor_registry.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
#include "compressor_registry.h"
55
#include "common/dout.h"
6+
#include "include/types.h" // for operator<<(std::vector)
67

78
using namespace std::literals;
89

src/msg/compressor_registry.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,16 @@
44
#pragma once
55

66
#include <map>
7+
#include <mutex> // for std::scoped_lock
78
#include <vector>
89

910
#include "compressor/Compressor.h"
1011
#include "common/ceph_mutex.h"
1112
#include "common/ceph_context.h"
1213
#include "common/config_cacher.h"
14+
#include "common/config_obs.h"
15+
#include "include/common_fwd.h" // for CephContext
16+
#include "include/msgr.h" // for CEPH_ENTITY_TYPE_OSD
1317

1418
class CompressorRegistry : public md_config_obs_t {
1519
public:

0 commit comments

Comments
 (0)