diff options
author | Zachary Turner <zturner@google.com> | 2017-05-11 00:09:30 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-05-11 00:09:30 +0000 |
commit | bfb8e189d224c7bc9764d5512f4342c546da31b1 (patch) | |
tree | 755026e9704fd67ed535e73982b92a0082380df6 /llvm/lib/Support/Parallel.cpp | |
parent | 3a57fbd6db74b2eb5cd2789036c521f702cb323e (diff) | |
download | bcm5719-llvm-bfb8e189d224c7bc9764d5512f4342c546da31b1.tar.gz bcm5719-llvm-bfb8e189d224c7bc9764d5512f4342c546da31b1.zip |
Fix build errors with Parallel.
llvm-svn: 302749
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 04fb1c95533..15da66cbe80 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; - Latch Done; + detail::Latch Done; }; Executor *Executor::getDefaultExecutor() { |