Merge commit 'd9f54113b3c445c32e306ec6c895b469ca30ae77' into ximinez/number_asan

* commit 'd9f54113b3c445c32e306ec6c895b469ca30ae77':
This commit is contained in:
Ed Hennis
2026-02-20 18:50:18 -05:00

View File

@@ -8,8 +8,8 @@ JobQueue::Coro::Coro(Coro_create_t, JobQueue& jq, JobType type, std::string cons
, type_(type)
, name_(name)
, running_(false)
, coro_([this,
fn = std::forward<F>(f)](boost::coroutines2::coroutine<void>::push_type& do_yield) {
, coro_([this, fn = std::forward<F>(f)](
boost::coroutines2::asymmetric_coroutine<void>::push_type& do_yield) {
yield_ = &do_yield;
yield();
fn(shared_from_this());