From cb6dc831d40ea6623ced7bcb1f7463c8af1c53e0 Mon Sep 17 00:00:00 2001 From: Paul Nehlich Date: Mon, 4 May 2026 10:12:48 +0200 Subject: [PATCH] Added missing import to taskHelper.cpp for campatibility with gcc 15.2.x --- src/fsfw/osal/host/taskHelpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/fsfw/osal/host/taskHelpers.cpp b/src/fsfw/osal/host/taskHelpers.cpp index e5a931ed..2052ff36 100644 --- a/src/fsfw/osal/host/taskHelpers.cpp +++ b/src/fsfw/osal/host/taskHelpers.cpp @@ -2,6 +2,7 @@ #include #include +#include std::mutex nameMapLock; std::map taskNameMap;