We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 078f272 commit b9ae5d8Copy full SHA for b9ae5d8
lldb/include/lldb/Host/Socket.h
@@ -153,7 +153,9 @@ class Socket : public IOObject {
153
virtual std::string GetRemoteConnectionURI() const { return ""; };
154
155
// If the Socket is listening then return the URI for clients to connect.
156
- virtual std::vector<std::string> GetListeningConnectionURI() const { return {}; }
+ virtual std::vector<std::string> GetListeningConnectionURI() const {
157
+ return {};
158
+ }
159
160
protected:
161
Socket(SocketProtocol protocol, bool should_close);
0 commit comments