diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-19 20:34:14 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-19 20:34:14 +0000 |
commit | a67b9de1742efbff29ec08093b220565eab7df23 (patch) | |
tree | 1f0778b8e417fd24873b945f8d2e89a292a25942 /include/channels.h | |
parent | e93827e41cdb958314eb669e94c9dd1280b691c9 (diff) |
Change modes in channels and users to use std::bitset instead of an array. This saves 56 bytes per channel, and 112 bytes per channel, with no loss in speed or ease of use in code. :). Thanks (VERY) much to Special for telling me about this.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10043 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channels.h')
-rw-r--r-- | include/channels.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/channels.h b/include/channels.h index 0d4c4813c..2042df220 100644 --- a/include/channels.h +++ b/include/channels.h @@ -137,12 +137,12 @@ class CoreExport Channel : public Extensible std::string name; /* CHANMAX */ /** Modes for the channel. - * This is not a null terminated string! It is a hash where + * This is not a null terminated string! It is a bitset where * each item in it represents if a mode is set. For example * for mode +A, index 0. Use modechar-65 to calculate which * field to check. */ - unsigned char modes[64]; + std::bitset<64> modes; /** User lists. * There are four user lists, one for |