From a5e894143812e7f0d20b87a41bfc30de38073b15 Mon Sep 17 00:00:00 2001 From: Aishwarya Mathuria Date: Thu, 6 Nov 2025 11:34:48 +0000 Subject: [PATCH] src/msg/Policy: explicitly include for std::map usage MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The Seastar update brought in a newer toolchain, which stopped pulling in indirectly through other headers. That exposed missing includes in Policy.h, where std::map was used but wasn’t explicitly included. Signed-off-by: Aishwarya Mathuria --- src/msg/Policy.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/msg/Policy.h b/src/msg/Policy.h index 32617cd87ad05..6bd449272a02b 100644 --- a/src/msg/Policy.h +++ b/src/msg/Policy.h @@ -4,6 +4,7 @@ #pragma once #include "include/ceph_features.h" +#include namespace ceph::net { -- 2.39.5