Remove redundant block

Signed-off-by: JCW <a1q123456@users.noreply.github.com>
This commit is contained in:
JCW
2025-09-26 13:18:23 +01:00
parent 9a3a58d0f2
commit 6f0767a99e

View File

@@ -47,10 +47,8 @@ JobQueue::Coro::Coro(
self = shared_from_this();
fn(self);
}
{
state_ = CoroState::Finished;
cv_.notify_all();
}
state_ = CoroState::Finished;
cv_.notify_all();
},
boost::coroutines::attributes(megabytes(1)))
{