Rename ThreadPool to StdThreadPool

`ThreadPool` was split up in LLVM
6594f428de91e333c1cbea4f55e79b18d31024c4.
This commit is contained in:
Ben Barham
2024-03-22 17:20:58 -07:00
parent 0f52071c22
commit 440421bcc5
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@ private:
/// The available pool of workers for filesystem module search
unsigned NumThreads;
std::list<std::unique_ptr<ModuleDependencyScanningWorker>> Workers;
llvm::ThreadPool ScanningThreadPool;
llvm::StdThreadPool ScanningThreadPool;
/// Protect worker access.
std::mutex WorkersLock;
};