Commit 96fc0f52 authored by Matthias Vallentin's avatar Matthias Vallentin

Compile fix for DISABLE_CONTEXT_SWITCHING build.

parent 7c61390b
...@@ -292,8 +292,8 @@ actor_ptr thread_pool_scheduler::spawn(void_function what, scheduling_hint sh) { ...@@ -292,8 +292,8 @@ actor_ptr thread_pool_scheduler::spawn(void_function what, scheduling_hint sh) {
} }
actor_ptr thread_pool_scheduler::spawn(void_function what, actor_ptr thread_pool_scheduler::spawn(void_function what,
scheduling_hint sh, init_callback init_cb,
init_callback init_cb) { scheduling_hint sh) {
return spawn_as_thread(std::move(what), return spawn_as_thread(std::move(what),
std::move(init_cb), std::move(init_cb),
sh == detached_and_hidden); sh == detached_and_hidden);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment