Skip to content

Commit d32bcbf

Browse files
committed
[lldb] Fix build failure in Debugger.cpp (NFC)
llvm-project/lldb/source/Core/Debugger.cpp:107:14: error: no type named 'DefaultThreadPoolThreadPool' in namespace 'llvm' static llvm::DefaultThreadPoolThreadPool *g_thread_pool = nullptr; ~~~~~~^ 1 error generated.
1 parent 987fe6f commit d32bcbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Core/Debugger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ static std::recursive_mutex *g_debugger_list_mutex_ptr =
104104
nullptr; // NOTE: intentional leak to avoid issues with C++ destructor chain
105105
static Debugger::DebuggerList *g_debugger_list_ptr =
106106
nullptr; // NOTE: intentional leak to avoid issues with C++ destructor chain
107-
static llvm::DefaultThreadPoolThreadPool *g_thread_pool = nullptr;
107+
static llvm::DefaultThreadPool *g_thread_pool = nullptr;
108108

109109
static constexpr OptionEnumValueElement g_show_disassembly_enum_values[] = {
110110
{

0 commit comments

Comments
 (0)