net/AllocatedSocketAddress: use C++11 initializers

This commit is contained in:
Max Kellermann 2017-05-17 12:06:45 +02:00
parent a8db9ae304
commit 7b05df8d33

View File

@ -45,18 +45,17 @@ public:
typedef SocketAddress::size_type size_type; typedef SocketAddress::size_type size_type;
private: private:
struct sockaddr *address; struct sockaddr *address = nullptr;
size_type size; size_type size = 0;
AllocatedSocketAddress(struct sockaddr *_address, AllocatedSocketAddress(struct sockaddr *_address,
size_type _size) size_type _size)
:address(_address), size(_size) {} :address(_address), size(_size) {}
public: public:
AllocatedSocketAddress():address(nullptr), size(0) {} AllocatedSocketAddress() = default;
explicit AllocatedSocketAddress(SocketAddress src) explicit AllocatedSocketAddress(SocketAddress src) {
:address(nullptr), size(0) {
*this = src; *this = src;
} }