https://github.com/ashgti created https://github.com/llvm/llvm-project/pull/155720
Fixes lldb-mcp, aa71d95 was merged after 71a065e. >From 6630ce4639806ea392f3ad3a1b36bf6c40b423f2 Mon Sep 17 00:00:00 2001 From: John Harrison <harj...@google.com> Date: Wed, 27 Aug 2025 16:30:14 -0700 Subject: [PATCH] [lldb] Correct a usage after a rename was merged. Fixes lldb-mcp, aa71d95 was merged after 71a065e. --- lldb/tools/lldb-mcp/lldb-mcp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/tools/lldb-mcp/lldb-mcp.cpp b/lldb/tools/lldb-mcp/lldb-mcp.cpp index 42daabbe4da2f..a1a835aaa0a58 100644 --- a/lldb/tools/lldb-mcp/lldb-mcp.cpp +++ b/lldb/tools/lldb-mcp/lldb-mcp.cpp @@ -63,7 +63,7 @@ int main(int argc, char *argv[]) { [](MainLoopBase &loop) { loop.RequestTermination(); }); }); - auto transport_up = std::make_unique<lldb_protocol::mcp::MCPTransport>( + auto transport_up = std::make_unique<lldb_protocol::mcp::Transport>( input, output, std::string(client_name), [&](llvm::StringRef message) { llvm::errs() << message << '\n'; }); _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits