================
@@ -1169,10 +1169,10 @@ void DAP::ConfigureSourceMaps() {
 
   if (!configuration.sourceMap.empty()) {
     for (const auto &kv : configuration.sourceMap) {
-      strm << "\"" << kv.first << "\" \"" << kv.second << "\" ";
+      strm << "\"" << kv.first.str() << "\" \"" << kv.second.str() << "\" ";
----------------
DrSergei wrote:

I see `operator<<` for `String`, so I guess it should work without calling 
`.str()`

https://github.com/llvm/llvm-project/pull/181261
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to