aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/StaticSocketAddress.cxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/net/StaticSocketAddress.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/net/StaticSocketAddress.cxx b/src/net/StaticSocketAddress.cxx
index 27de7f6f5..94db4a49c 100644
--- a/src/net/StaticSocketAddress.cxx
+++ b/src/net/StaticSocketAddress.cxx
@@ -41,10 +41,3 @@ StaticSocketAddress::operator=(SocketAddress other)
memcpy(&address, other.GetAddress(), size);
return *this;
}
-
-bool
-StaticSocketAddress::operator==(const StaticSocketAddress &other) const
-{
- return size == other.size &&
- memcmp(&address, &other.address, size) == 0;
-}