fix(runtime/thread): MULTI_THREAD=OFF build

This commit is contained in:
Leonardo de Moura 2018-08-28 08:08:55 -07:00
parent 030669ea4d
commit b63b05e5fd

View file

@ -154,6 +154,7 @@ public:
class condition_variable {
public:
template<typename Lock> void wait(Lock const &) {}
template<typename Lock, typename F> void wait(Lock const &, F) {}
template<typename Lock> void wait_for(Lock const &, chrono::milliseconds const &) {}
void notify_all() {}
void notify_one() {}