From: Max Kellermann Date: Mon, 28 Oct 2024 16:38:00 +0000 (+0100) Subject: include/Context: include only if DEBUG_GATHER X-Git-Tag: v20.0.0~283^2~14 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b09e04c08725c711a3dc898bb93d54838a23d251;p=ceph.git include/Context: include only if DEBUG_GATHER `std::set` is only used inside an `#ifdef DEBUG_GATHER` block. Signed-off-by: Max Kellermann --- diff --git a/src/include/Context.h b/src/include/Context.h index b89c4fe8220..1fad9e81b9e 100644 --- a/src/include/Context.h +++ b/src/include/Context.h @@ -21,7 +21,10 @@ #include #include #include + +#ifdef DEBUG_GATHER #include +#endif #include #include