[Lldb-commits] [lldb] [lldb-dap] Add invalidated event (PR #157530)
Walter Erquinigo via lldb-commits
lldb-commits at lists.llvm.org
Tue Sep 9 07:14:18 PDT 2025
================
@@ -32,6 +34,9 @@ void SendContinuedEvent(DAP &dap);
void SendProcessExitedEvent(DAP &dap, lldb::SBProcess &process);
+void SendInvalidatedEvent(
----------------
walter-erquinigo wrote:
Add documention and mention that `areas` is moved within the function.
I also think it might be fine not to use `&&`, get a `llvm::ArrayRef` as argument and create a copy of it inside the implementation. We don't need to over optimize this part and instead it might be better to reduce the number of side effects (i.e. moving areas).
https://github.com/llvm/llvm-project/pull/157530
More information about the lldb-commits
mailing list