[Lldb-commits] [lldb] [lldb-dap] Refactoring lldb-dap port listening mode to allow multiple connections. (PR #116392)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 28 14:54:48 PST 2025


================
@@ -904,11 +928,14 @@ bool StartDebuggingRequestHandler::DoExecute(
       "startDebugging",
       llvm::json::Object{{"request", request},
                          {"configuration", std::move(*configuration)}},
-      [](llvm::Expected<llvm::json::Value> value) {
+      [](auto dap, auto value) {
----------------
ashgti wrote:

Added the explicit types here instead of `auto`.

https://github.com/llvm/llvm-project/pull/116392


More information about the lldb-commits mailing list