Skip to content

Commit

Permalink
Final build fix for gcc 4.7 (no longer supported in 8 days)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shauren committed Feb 21, 2016
1 parent ae1a5c6 commit 2345e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/shared/Networking/NetworkThread.h
Expand Up @@ -147,9 +147,9 @@ class NetworkThread
if (sock->IsOpen())
sock->CloseSocket();

SocketRemoved(sock);
this->SocketRemoved(sock);

--_connections;
--this->_connections;
return true;
}

Expand Down

3 comments on commit 2345e84

@obsidean
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is replacing gcc 4.7? i didn't find any reference to this in the forums.

@Aokromes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@obsidean
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, thanks. nothing to do with OS X then. phew

Please sign in to comment.