[ThreadPool] Remove outdated comment after r288016.

llvm-svn: 288017
This commit is contained in:
Davide Italiano 2016-11-28 08:57:05 +00:00
parent 3ea0bfa7e0
commit 3dd87dad64
1 changed files with 2 additions and 4 deletions

View File

@ -72,8 +72,7 @@ public:
/// Blocking destructor: the pool will wait for all the threads to complete.
~ThreadPool();
/// Asynchronous submission of a task to the pool. The returned future can be
/// used to wait for the task to finish and is *non-blocking* on destruction.
/// Asynchronous submission of a task to the pool.
template <typename Function, typename... Args>
inline void async(Function &&F, Args &&... ArgList) {
auto Task =
@ -87,8 +86,7 @@ public:
#endif
}
/// Asynchronous submission of a task to the pool. The returned future can be
/// used to wait for the task to finish and is *non-blocking* on destruction.
/// Asynchronous submission of a task to the pool.
template <typename Function>
inline void async(Function &&F) {
#ifndef _MSC_VER