2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-08 11:12:23 +00:00

fix compilation with BOOST_NO_EXCEPTIONS

This commit is contained in:
huangqinjin
2018-08-31 10:45:06 +08:00
parent c5e756d196
commit d1284b02ad
3 changed files with 5 additions and 12 deletions

View File

@@ -478,7 +478,7 @@ namespace boost
mutex mx;
unique_lock<mutex> lock(mx);
condition_variable cond;
cond.do_wait_until(lock, detail::internal_platform_clock::now())
cond.do_wait_until(lock, detail::internal_platform_clock::now());
# endif
}
}