diff --git a/src/runtime/thread.h b/src/runtime/thread.h index 1740d8f92c..76b95317d9 100644 --- a/src/runtime/thread.h +++ b/src/runtime/thread.h @@ -154,6 +154,7 @@ public: class condition_variable { public: template void wait(Lock const &) {} + template void wait(Lock const &, F) {} template void wait_for(Lock const &, chrono::milliseconds const &) {} void notify_all() {} void notify_one() {}