We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2661e37 commit 609af87Copy full SHA for 609af87
libcxx/test/std/thread/thread.condition/thread.condition.condvar/wait_for.pass.cpp
@@ -43,9 +43,9 @@ int main(int, char**) {
43
// happen that we get awoken spuriously and fail to recognize it
44
// (making this test useless), but the likelihood should be small.
45
{
46
- std::atomic<bool> ready (false);
47
- std::atomic<bool> likely_spurious (true);
48
- auto timeout = std::chrono::seconds(3600);
+ std::atomic<bool> ready(false);
+ std::atomic<bool> likely_spurious(true);
+ auto timeout = std::chrono::seconds(3600);
49
std::condition_variable cv;
50
std::mutex mutex;
51
0 commit comments