[Lldb-commits] [lldb] [lldb] Correct a usage after a rename was merged. (PR #155720)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 27 16:31:53 PDT 2025
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 <harjohn at 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'; });
More information about the lldb-commits
mailing list