From c5b574a4288629216f96c1e80c99cb079f3abd6e Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Thu, 31 Oct 2024 10:28:17 +0100 Subject: [PATCH] Add missing cstdlib include for std::free in demangle_helper.hpp --- libs/pika/debugging/include/pika/debugging/demangle_helper.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/pika/debugging/include/pika/debugging/demangle_helper.hpp b/libs/pika/debugging/include/pika/debugging/demangle_helper.hpp index 2473506da..b56e8ad01 100644 --- a/libs/pika/debugging/include/pika/debugging/demangle_helper.hpp +++ b/libs/pika/debugging/include/pika/debugging/demangle_helper.hpp @@ -8,6 +8,8 @@ #pragma once #include + +#include #include #include #include