From c746ba6d316fe359477e8aff1545e741e3b20905 Mon Sep 17 00:00:00 2001 From: "systems-assistant[bot]" <221163467+systems-assistant[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 08:42:03 -0700 Subject: [PATCH] Fix compilation with libc++ (#148) `interop.cpp` uses `std::find_if` without a relevant include file, breaking compilation with Clang/libc++. Co-authored-by: Sv. Lockal --- .../rocprofiler-sdk/source/lib/python/rocpd/source/interop.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/rocprofiler-sdk/source/lib/python/rocpd/source/interop.cpp b/projects/rocprofiler-sdk/source/lib/python/rocpd/source/interop.cpp index bdde41b0b9..31010c9411 100644 --- a/projects/rocprofiler-sdk/source/lib/python/rocpd/source/interop.cpp +++ b/projects/rocprofiler-sdk/source/lib/python/rocpd/source/interop.cpp @@ -40,6 +40,8 @@ #include #include +#include + namespace rocpd { namespace interop