]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
include/Context: include <set> only if DEBUG_GATHER
authorMax Kellermann <max.kellermann@ionos.com>
Mon, 28 Oct 2024 16:38:00 +0000 (17:38 +0100)
committerMax Kellermann <max.kellermann@ionos.com>
Mon, 9 Dec 2024 21:51:33 +0000 (22:51 +0100)
`std::set` is only used inside an `#ifdef DEBUG_GATHER` block.

Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
src/include/Context.h

index b89c4fe8220a65daa015727b317e5b5b5fad797e..1fad9e81b9edc8a0c0a528a25718f18bf1c21508 100644 (file)
 #include <functional>
 #include <list>
 #include <memory>
+
+#ifdef DEBUG_GATHER
 #include <set>
+#endif
 
 #include <boost/function.hpp>
 #include <boost/system/error_code.hpp>