From 3a323b7c19cbc31c11365c9ef7dd0122df8b387d Mon Sep 17 00:00:00 2001 From: lotodore Date: Sun, 15 Nov 2009 08:55:04 +0000 Subject: [PATCH] Still fixing gcc error. --- src/net/common/serverlobbythread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/common/serverlobbythread.cpp b/src/net/common/serverlobbythread.cpp index 8ba89409..aa668525 100644 --- a/src/net/common/serverlobbythread.cpp +++ b/src/net/common/serverlobbythread.cpp @@ -952,7 +952,7 @@ ServerLobbyThread::HandleNetPacketInit(SessionWrapper session, const InitMessage && playerName.substr(0, sizeof(SERVER_GUEST_PLAYER_NAME) - 1) == SERVER_GUEST_PLAYER_NAME) { string guestId(playerName.substr(sizeof(SERVER_GUEST_PLAYER_NAME))); - if (count_if(guestId.begin(), guestId.end(), isdigit) == guestId.size()) + if (count_if(guestId.begin(), guestId.end(), ::isdigit) == guestId.size()) { validGuest = true; noAuth = true;