diff options
author | Zachary Turner <zturner@google.com> | 2017-05-11 00:22:18 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-11 00:22:18 +0000 |
commit | 7a2d56813db52951251f18884fe1ee8e48a97ce0 (patch) | |
tree | 937371b503a293f466fdfcbc5e7042691ffbf467 /llvm/lib/Support/Parallel.cpp | |
parent | 20c8e9192d6ecb27e8031eed737bcfe1c02106c6 (diff) | |
download | bcm5719-llvm-7a2d56813db52951251f18884fe1ee8e48a97ce0.tar.gz bcm5719-llvm-7a2d56813db52951251f18884fe1ee8e48a97ce0.zip |
Final (hopefully) fix for the build bots.
This time it actually occurred to me to change the #defines
to actually test the pre-processed out codepath. Hopefully
this time it works.
llvm-svn: 302752
Diffstat (limited to 'llvm/lib/Support/Parallel.cpp')
-rw-r--r-- | llvm/lib/Support/Parallel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Parallel.cpp b/llvm/lib/Support/Parallel.cpp index 3f7495b44f7..c140b13d7e0 100644 --- a/llvm/lib/Support/Parallel.cpp +++ b/llvm/lib/Support/Parallel.cpp @@ -117,7 +117,7 @@ private: std::stack<std::function<void()>> WorkStack; std::mutex Mutex; std::condition_variable Cond; - detail::Latch Done; + parallel::detail::Latch Done; }; Executor *Executor::getDefaultExecutor() { |