Skip to content

Commit a5e8941

Browse files
committed
src/msg/Policy: explicitly include <map> for std::map usage
The Seastar update brought in a newer toolchain, which stopped pulling in <map> indirectly through other headers. That exposed missing includes in Policy.h, where std::map was used but <map> wasn’t explicitly included. Signed-off-by: Aishwarya Mathuria <[email protected]>
1 parent 8a7ce72 commit a5e8941

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/msg/Policy.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#pragma once
55

66
#include "include/ceph_features.h"
7+
#include <map>
78

89
namespace ceph::net {
910

0 commit comments

Comments
 (0)