[Lldb-commits] [lldb] [LLDB-DAP] SBDebugger don't prefix title on progress updates (PR #124648)
Jacob Lalonde via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 30 15:45:50 PST 2025
================
@@ -411,6 +412,30 @@ void SendStdOutStdErr(DAP &dap, lldb::SBProcess &process) {
dap.SendOutput(OutputType::Stderr, llvm::StringRef(buffer, count));
}
+static std::string GetStringFromStructuredData(lldb::SBStructuredData &data,
----------------
Jlalond wrote:
@JDevlieghere is there a less clunky way to do this? I know we want to handle string creation on the side of lldb-dap so we get some wins not needing to constify, but I don't like my code.
https://github.com/llvm/llvm-project/pull/124648
More information about the lldb-commits
mailing list