chriskohlhoff/ip-address

Error operator != for address_v4

OldMen opened this issue · 0 comments

/// Compare two addresses for inequality.
friend bool operator!=(const address_v4& a1,
const address_v4& a2) STDNET_NOEXCEPT
{
return a1.bytes_ == a2.bytes_; // <<< !=
}