Skip to content

Commit b9ae5d8

Browse files
committed
Formatting Socket.h
1 parent 078f272 commit b9ae5d8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/include/lldb/Host/Socket.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@ class Socket : public IOObject {
153153
virtual std::string GetRemoteConnectionURI() const { return ""; };
154154

155155
// If the Socket is listening then return the URI for clients to connect.
156-
virtual std::vector<std::string> GetListeningConnectionURI() const { return {}; }
156+
virtual std::vector<std::string> GetListeningConnectionURI() const {
157+
return {};
158+
}
157159

158160
protected:
159161
Socket(SocketProtocol protocol, bool should_close);

0 commit comments

Comments
 (0)