fix(util/thread): MULTI_THREAD=OFF mode

This commit is contained in:
Leonardo de Moura 2014-09-16 20:44:43 -07:00
parent 2b0623c0a1
commit f03f0aa8b9

View file

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