diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-23 20:29:00 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-23 20:29:00 +0000 |
commit | a78e985b881c97d476b0799ea5db5fe1f417c086 (patch) | |
tree | 6bf8897d7ebc65fac713aca354c4225a9f8fd20c /include/inspircd.h | |
parent | 4be79b163029aae7f322bd9699bb8855a96e0547 (diff) |
More pedantic safety
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8318 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 67408ad6e..320ac6b29 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -720,10 +720,9 @@ class CoreExport InspIRCd : public classbase /** Add a new mode to this server's mode parser * @param mh The modehandler to add - * @param modechar The mode character this modehandler handles * @return True if the mode handler was added */ - bool AddMode(ModeHandler* mh, const unsigned char modechar); + bool AddMode(ModeHandler* mh); /** Add a new mode watcher to this server's mode parser * @param mw The modewatcher to add |