================
@@ -385,10 +488,10 @@ llvm::json::Object CreateRunInTerminalReverseRequest(
std::stringstream ss;
std::string_view delimiter;
- for (const std::optional<std::string> &file : stdio) {
+ for (const std::optional<protocol::String> &file : stdio) {
ss << std::exchange(delimiter, ":");
if (file)
- ss << *file;
+ ss << file->str();
----------------
DrSergei wrote:
I think we don't need this change, because `String` has overloaded `operator <<`
https://github.com/llvm/llvm-project/pull/182056
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits