net/SocketAdddress: remove unnecessary operator!=()

The compiler must generate this implicitly from operator==().
This commit is contained in:
Max Kellermann
2024-07-22 16:49:37 +02:00
committed by Max Kellermann
parent bc758cece0
commit ea96b321dc
4 changed files with 0 additions and 19 deletions

View File

@@ -169,8 +169,4 @@ public:
[[gnu::pure]]
bool operator==(const SocketAddress other) const noexcept;
bool operator!=(const SocketAddress other) const noexcept {
return !(*this == other);
}
};