From 9b718a50d6337b066ee338609450d721f60725b3 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 30 Oct 2024 20:53:19 +0100 Subject: [PATCH] perfglue: add missing include Signed-off-by: Max Kellermann --- src/perfglue/heap_profiler.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/perfglue/heap_profiler.cc b/src/perfglue/heap_profiler.cc index cbfc9008627b9..6eea64db67319 100644 --- a/src/perfglue/heap_profiler.cc +++ b/src/perfglue/heap_profiler.cc @@ -12,6 +12,8 @@ * */ +#include "heap_profiler.h" + #include "acconfig.h" // Use the newer gperftools header locations if available. @@ -20,12 +22,13 @@ #include #include -#include "heap_profiler.h" #include "common/environment.h" #include "common/LogClient.h" #include "global/global_context.h" #include "common/debug.h" +#include + #define dout_context g_ceph_context bool ceph_using_tcmalloc() -- 2.39.5