diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-07 17:55:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-07 21:38:21 +0300 |
commit | ffeffa2314dbe03e0ced58e0c465760b54908690 (patch) | |
tree | 3da4d65e43a4b55aed7c01ec612c9dec50d1bd1c /src/net | |
parent | ae550d179c25e149f7e8a8d70011b364fb0d85d6 (diff) | |
download | plus-ffeffa2314dbe03e0ced58e0c465760b54908690.tar.gz plus-ffeffa2314dbe03e0ced58e0c465760b54908690.tar.bz2 plus-ffeffa2314dbe03e0ced58e0c465760b54908690.tar.xz plus-ffeffa2314dbe03e0ced58e0c465760b54908690.zip |
fix cide style.
Add explicit keyword to some constructors.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/ea/loginhandler.cpp | 2 | ||||
-rw-r--r-- | src/net/eathena/loginhandler.cpp | 2 | ||||
-rw-r--r-- | src/net/tmwa/loginhandler.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/net/ea/loginhandler.cpp b/src/net/ea/loginhandler.cpp index ea4452528..33c9ec45f 100644 --- a/src/net/ea/loginhandler.cpp +++ b/src/net/ea/loginhandler.cpp @@ -164,7 +164,7 @@ void LoginHandler::procecessCharPasswordResponse(Net::MessageIn &msg) const void LoginHandler::processUpdateHost(Net::MessageIn &msg) { - int len = msg.readInt16() - 4; + const int len = msg.readInt16() - 4; mUpdateHost = msg.readString(len); if (!checkPath(mUpdateHost)) diff --git a/src/net/eathena/loginhandler.cpp b/src/net/eathena/loginhandler.cpp index d0aa9b808..cda6c0c1a 100644 --- a/src/net/eathena/loginhandler.cpp +++ b/src/net/eathena/loginhandler.cpp @@ -176,7 +176,7 @@ void LoginHandler::processServerVersion(Net::MessageIn &msg) void LoginHandler::processUpdateHost2(Net::MessageIn &msg) const { - int len = msg.readInt16() - 4; + const int len = msg.readInt16() - 4; const std::string updateHost = msg.readString(len); splitToStringVector(loginData.updateHosts, updateHost, '|'); diff --git a/src/net/tmwa/loginhandler.cpp b/src/net/tmwa/loginhandler.cpp index b68980969..fca7e904c 100644 --- a/src/net/tmwa/loginhandler.cpp +++ b/src/net/tmwa/loginhandler.cpp @@ -213,7 +213,7 @@ void LoginHandler::processServerVersion(Net::MessageIn &msg) void LoginHandler::processUpdateHost2(Net::MessageIn &msg) const { - int len = msg.readInt16() - 4; + const int len = msg.readInt16() - 4; const std::string updateHost = msg.readString(len); splitToStringVector(loginData.updateHosts, updateHost, '|'); |