[Lldb-commits] [lldb] [lldb] Emit diagnostics as "important" output (PR #137280)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 25 08:36:02 PDT 2025
================
@@ -117,6 +118,9 @@ static void EventThreadFunction(DAP &dap) {
lldb::SBEvent event;
lldb::SBListener listener = dap.debugger.GetListener();
dap.broadcaster.AddListener(listener, eBroadcastBitStopEventThread);
+ dap.debugger.GetBroadcaster().AddListener(
+ listener, lldb::SBDebugger::eBroadcastBitError |
----------------
ashgti wrote:
Style nit, do these need `lldb::SBDebugger::` in front? I see them used below without the prefix.
https://github.com/llvm/llvm-project/pull/137280
More information about the lldb-commits
mailing list