Fix LLDB build after renaming the base class for ThreadPool to ThreadPoolInterface

The header was updated but not the implementation.
This commit is contained in:
Mehdi Amini
2024-03-02 19:30:33 -08:00
parent 6c6ea9d2b0
commit e52650cfc3

View File

@@ -2195,7 +2195,7 @@ Status Debugger::RunREPL(LanguageType language, const char *repl_options) {
return err;
}
llvm::ThreadPool &Debugger::GetThreadPool() {
llvm::ThreadPoolInterface &Debugger::GetThreadPool() {
assert(g_thread_pool &&
"Debugger::GetThreadPool called before Debugger::Initialize");
return *g_thread_pool;