mirror of
https://github.com/Icinga/icinga2.git
synced 2026-05-28 04:12:13 -04:00
Merge pull request #10795 from Icinga/something-weird-is-going-on
Fix compiler crash on SLES 15.7 arm64 runner
This commit is contained in:
commit
ccf090ea82
1 changed files with 2 additions and 2 deletions
|
|
@ -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(); });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue