| Index: net/base/ip_endpoint.h
|
| diff --git a/net/base/ip_endpoint.h b/net/base/ip_endpoint.h
|
| index 5e5d9c19684e63a27959ee8cdd85eb5d9a202bc9..2b06d9e81f6bbdbc71b59e0624915c4ee92b5665 100644
|
| --- a/net/base/ip_endpoint.h
|
| +++ b/net/base/ip_endpoint.h
|
| @@ -43,15 +43,15 @@ class NET_EXPORT IPEndPoint {
|
| // size of data in |address| available. On output, it is the size of
|
| // the address that was copied into |address|.
|
| // Returns true on success, false on failure.
|
| - bool ToSockAddr(struct sockaddr* address, socklen_t* address_length) const
|
| - WARN_UNUSED_RESULT;
|
| + bool ToSockAddr(struct sockaddr* address,
|
| + socklen_t* address_length) const WARN_UNUSED_RESULT;
|
|
|
| // Convert from a sockaddr struct.
|
| // |address| is the address.
|
| // |address_length| is the length of |address|.
|
| // Returns true on success, false on failure.
|
| - bool FromSockAddr(const struct sockaddr* address, socklen_t address_length)
|
| - WARN_UNUSED_RESULT;
|
| + bool FromSockAddr(const struct sockaddr* address,
|
| + socklen_t address_length) WARN_UNUSED_RESULT;
|
|
|
| // Returns value as a string (e.g. "127.0.0.1:80"). Returns empty
|
| // string if the address is invalid, and cannot not be converted to a
|
|
|