ip-address icon indicating copy to clipboard operation
ip-address copied to clipboard

Error operator != for address_v4

Open OldMen opened this issue 7 years ago • 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_; // <<< != }

OldMen avatar Dec 06 '18 07:12 OldMen