VS 2008 project files and build fixes

This commit is contained in:
Aleksandar Fabijanic
2012-07-12 05:21:01 +00:00
parent 1bd21292e7
commit acf820c46d
28 changed files with 6332 additions and 793 deletions

View File

@@ -301,9 +301,9 @@ SocketAddress::~SocketAddress()
bool SocketAddress::operator < (const SocketAddress& addr) const
{
if (family() < addr.family()) return true;
if (host() < addr.host()) return true;
return (port() < addr.port());
if (family() < addr.family()) return true;
if (host() < addr.host()) return true;
return (port() < addr.port());
}