fix all the warnings

This commit is contained in:
DarthArgus
2016-12-04 00:56:24 +00:00
parent 066eac440e
commit 12cf580937
4 changed files with 7 additions and 9 deletions
@@ -100,11 +100,11 @@ namespace ChatServerNamespace
if(fullName.find(ConfigChatServer::getClusterName()) == std::string::npos)
{
fullName = ConfigChatServer::getClusterName() + '+' + fullName;
fullName = std::string(ConfigChatServer::getClusterName()) + std::string("+") + fullName;
}
if(fullName.find(ConfigChatServer::getGameCode()) == std::string::npos)
{
fullName = ConfigChatServer::getGameCode() + '+' + fullName;
fullName = std::string(ConfigChatServer::getGameCode()) + std::string("+") + fullName;
}
if(fullName.find("SOE") == std::string::npos)
{
@@ -122,7 +122,7 @@ namespace ChatServerNamespace
std::set<NetworkId> s_notSubscribedClients;
// Control log output for chat room related methods
bool const s_enableChatRoomLogs = false;
bool const s_enableChatRoomLogs = false; // make configurable?
}
using namespace ChatServerNamespace;