From 81c97fbe194ab3962d4c17ceb060ef2396d16143 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Sun, 19 Jan 2014 04:56:00 -0700 Subject: [PATCH] Removed extra qualification --- .../server/application/ChatServer/src/shared/VChatInterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/server/application/ChatServer/src/shared/VChatInterface.h b/engine/server/application/ChatServer/src/shared/VChatInterface.h index 2e3987a3..4cb68b9e 100644 --- a/engine/server/application/ChatServer/src/shared/VChatInterface.h +++ b/engine/server/application/ChatServer/src/shared/VChatInterface.h @@ -30,7 +30,7 @@ struct ReturnAddress ReturnAddress() : type(RAT_invalid), clientId(), gameServerId(0) {} ReturnAddress(NetworkId const & id):type(RAT_client), clientId(id), gameServerId(0) {} ReturnAddress(unsigned const id) : type(RAT_gameserver), clientId(), gameServerId(id) {} - inline std::string ReturnAddress::debugString() const + inline std::string debugString() const { switch(type) {