sources/network/ipaddress.cpp

changeset 184
afd63357a03d
parent 183
9b6a0daedfc0
child 185
e83ec58cc458
--- a/sources/network/ipaddress.cpp	Wed Jan 27 14:05:39 2021 +0200
+++ b/sources/network/ipaddress.cpp	Wed Jan 27 14:06:45 2021 +0200
@@ -48,24 +48,6 @@
 
 // -----------------------------------------------------------------------------
 //
-IPAddress::IPAddress() :
-	host (0),
-	port (0) {}
-
-// -----------------------------------------------------------------------------
-//
-IPAddress::IPAddress (unsigned long host, unsigned short port) :
-	host (host),
-	port (port) {}
-
-// -----------------------------------------------------------------------------
-//
-IPAddress::IPAddress (const IPAddress& other) :
-	host (other.host),
-	port (other.port) {}
-
-// -----------------------------------------------------------------------------
-//
 std::string IPAddress::to_string (WithPort withport) const
 {
 	std::string val;

mercurial