================
@@ -115,6 +115,18 @@ std::string TCPSocket::GetRemoteConnectionURI() const {
   return "";
 }
 
+std::vector<std::string> TCPSocket::GetListeningConnectionURI() const {
+  if (m_listen_sockets.empty())
+    return {};
+
+  std::vector<std::string> URIs;
+  for (auto &s : m_listen_sockets)
----------------
labath wrote:

```suggestion
  for (const auto &[fd, addr] : m_listen_sockets)
```

(or any other variable names you like)

https://github.com/llvm/llvm-project/pull/118330
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to