diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-06 01:03:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-06 01:03:16 +0300 |
commit | ec914ceb5f421019a54b442e6fc0a0a2cfe8d627 (patch) | |
tree | 94e92dd3330b5a97f07e8be67f0a9cd627dcd2e3 /src | |
parent | 16da077d4094fd6941ae4de60f1b6f3e133f1b5a (diff) | |
download | plus-ec914ceb5f421019a54b442e6fc0a0a2cfe8d627.tar.gz plus-ec914ceb5f421019a54b442e6fc0a0a2cfe8d627.tar.bz2 plus-ec914ceb5f421019a54b442e6fc0a0a2cfe8d627.tar.xz plus-ec914ceb5f421019a54b442e6fc0a0a2cfe8d627.zip |
Fix compilation warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/net/tmwa/charserverhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/charserverhandler.cpp b/src/net/tmwa/charserverhandler.cpp index 95b26a89d..21857d45e 100644 --- a/src/net/tmwa/charserverhandler.cpp +++ b/src/net/tmwa/charserverhandler.cpp @@ -511,8 +511,8 @@ void CharServerHandler::processCharCreate2(Net::MessageIn &msg) BLOCK_END("CharServerHandler::processCharCreate2") } -void CharServerHandler::renameCharacter(const int id, - const std::string &newName) +void CharServerHandler::renameCharacter(const int id A_UNUSED, + const std::string &newName A_UNUSED) { } |