diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:51:04 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:51:04 +0000 |
commit | 95f69d02e9453229867521683824c6b1b7a2acab (patch) | |
tree | 891cfd6c78c52a2eae0ccf1d0dc894121ba815dd /include/channels.h | |
parent | 972edd0ff3b6750d270b79407cc8407c413d2082 (diff) |
inline Channel::IsModeSet
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11643 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channels.h')
-rw-r--r-- | include/channels.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/channels.h b/include/channels.h index 82bf50853..dfbe06c27 100644 --- a/include/channels.h +++ b/include/channels.h @@ -218,7 +218,8 @@ class CoreExport Channel : public Extensible * @param mode The mode character you wish to query * @return True if the custom mode is set, false if otherwise */ - bool IsModeSet(char mode); + inline bool IsModeSet(char mode) { return modes[mode-'A']; } + /** Returns the parameter for a custom mode on a channel. * @param mode The mode character you wish to query |