summaryrefslogtreecommitdiff
path: root/include/channels.h
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-28 03:27:28 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-12-28 03:27:28 +0000
commit376a2833d9274a83e3571da1b69ce2768a7c8bac (patch)
treeae7f39d44df229069636b50deb43b44d1dfdba24 /include/channels.h
parent98632e1ba440e0da081b955e0bc4d828b8951f6d (diff)
Change a few bits to use std::list instead of std::vector.
Vector is better than list, unless: - you require random access (these don't) - you require that the memory they are stored in are contiguous (these don't) This will save a couple of bytes here and there perhaps (along with much less problems with memory fragmentation and allocation). git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10923 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/channels.h')
-rw-r--r--include/channels.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channels.h b/include/channels.h
index 9c231008a..748f6c24b 100644
--- a/include/channels.h
+++ b/include/channels.h
@@ -58,7 +58,7 @@ class BanItem : public HostItem
/** Holds a complete ban list
*/
-typedef std::vector<BanItem> BanList;
+typedef std::list<BanItem> BanList;
/** A list of users on a channel
*/