From a01870a6aad5b6d8b9f090d98b54dc276b3e0155 Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Thu, 16 Apr 2026 09:01:06 +0200 Subject: [PATCH] Fix compiler crash on SLES 15.7 arm64 runner --- lib/base/io-engine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base/io-engine.cpp b/lib/base/io-engine.cpp index 423f9f7c2..9da8d1f54 100644 --- a/lib/base/io-engine.cpp +++ b/lib/base/io-engine.cpp @@ -123,8 +123,8 @@ void CpuBoundWork::Done() } // Again, a delayed wake-up is fine, hence unlocked. - for (auto& [strand, cv] : subscribers) { - boost::asio::post(strand, [cv = std::move(cv)] { cv->NotifyOne(); }); + for (auto& subscriber : subscribers) { + boost::asio::post(subscriber.first, [cv = std::move(subscriber.second)] { cv->NotifyOne(); }); } } }