diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-18 14:23:26 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-18 14:23:26 +0200 |
commit | 2b2e299cccfa5b1294b53d8d6756a31d4216d237 (patch) | |
tree | 04cffa5a2e6c2d343442c22fae37624fb72d62be /src/scripts/Commands/cs_misc.cpp | |
parent | aa87ec685b25846a3ce2e325151d1786235225f5 (diff) |
Fixed all unused-parameters warnings
issue #121
used clang-tidy to achieve this
Diffstat (limited to 'src/scripts/Commands/cs_misc.cpp')
-rw-r--r-- | src/scripts/Commands/cs_misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/Commands/cs_misc.cpp b/src/scripts/Commands/cs_misc.cpp index a1f36e64ff..4bf648e95f 100644 --- a/src/scripts/Commands/cs_misc.cpp +++ b/src/scripts/Commands/cs_misc.cpp @@ -1092,7 +1092,7 @@ public: return true; } - static bool HandleSaveCommand(ChatHandler* handler, char const* /*args*/) + static bool HandleSaveCommand(ChatHandler* /*handler*/, char const* /*args*/) { // pussywizard: fully disabled on 28.12.2011, but disabled it "silently" return true; |