| Index: net/base/ip_endpoint.cc
|
| diff --git a/net/base/ip_endpoint.cc b/net/base/ip_endpoint.cc
|
| index a0d378ee4cc6e8e5b29cc668ca475e22a3ca5155..abba528deda28f26155e75f61852342f21965be5 100644
|
| --- a/net/base/ip_endpoint.cc
|
| +++ b/net/base/ip_endpoint.cc
|
| @@ -21,13 +21,15 @@ const socklen_t kSockaddrInSize = sizeof(struct sockaddr_in);
|
| const socklen_t kSockaddrIn6Size = sizeof(struct sockaddr_in6);
|
| }
|
|
|
| -IPEndPoint::IPEndPoint() : port_(0) {}
|
| +IPEndPoint::IPEndPoint() : port_(0) {
|
| +}
|
|
|
| -IPEndPoint::~IPEndPoint() {}
|
| +IPEndPoint::~IPEndPoint() {
|
| +}
|
|
|
| IPEndPoint::IPEndPoint(const IPAddressNumber& address, int port)
|
| - : address_(address),
|
| - port_(port) {}
|
| + : address_(address), port_(port) {
|
| +}
|
|
|
| IPEndPoint::IPEndPoint(const IPEndPoint& endpoint) {
|
| address_ = endpoint.address_;
|
|
|