diff options
Diffstat (limited to 'llvm/include/llvm/Support/ThreadPool.h')
-rw-r--r-- | llvm/include/llvm/Support/ThreadPool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/ThreadPool.h b/llvm/include/llvm/Support/ThreadPool.h index 35dc20867a4..85c062179f0 100644 --- a/llvm/include/llvm/Support/ThreadPool.h +++ b/llvm/include/llvm/Support/ThreadPool.h @@ -66,7 +66,7 @@ public: template <typename Function, typename... Args> inline std::shared_future<VoidTy> async(Function &&F, Args &&... ArgList) { auto Task = - std::bind(std::forward<Function>(F), std::forward<Args...>(ArgList...)); + std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...); #ifndef _MSC_VER return asyncImpl(std::move(Task)); #else |