diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-23 19:28:41 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-23 19:28:41 +0000 |
commit | 18b1ec50803714aa836a32a42806b7a8c367d9fd (patch) | |
tree | c21c53040c335872315ffc503247be8b9096086a /include/ctables.h | |
parent | e281922d55e302bd823be89895006239248505e3 (diff) |
-pedantic tidyups, lets see if it finds anything worthy of a fix
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8313 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/ctables.h')
-rw-r--r-- | include/ctables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ctables.h b/include/ctables.h index ee972adaa..aafd27e4a 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -132,7 +132,7 @@ class CoreExport Command : public Extensible * If the command succeeds but should remain local to this server, * return CMD_LOCALONLY. */ - virtual CmdResult HandleInternal(const unsigned int id, const std::deque<classbase*> ¶ms) + virtual CmdResult HandleInternal(const unsigned int /* id */, const std::deque<classbase*>& /* params */) { return CMD_INVALID; } @@ -146,7 +146,7 @@ class CoreExport Command : public Extensible * If the command succeeds but should remain local to this server, * return CMD_LOCALONLY. */ - virtual CmdResult HandleServer(const char** parameters, int pcnt, const std::string &servername) + virtual CmdResult HandleServer(const char** /* parameters */, int /* pcnt */, const std::string& /* servername */) { return CMD_INVALID; } |