diff options
author | Adam <Adam@anope.org> | 2010-06-20 21:33:01 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-20 21:33:01 -0400 |
commit | 17040c088a00a83094359382b9add202e3749db7 (patch) | |
tree | d4671d12949c363f3b81cd5bacce38b2c18f75c5 /include/modules.h | |
parent | 0d2d7e996835c8c77c1eee5a4c90c3e2a60be4ff (diff) |
Store modules in a list and xlines in a vector, not deques. We need to be able to keep iterators valid.
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h index a8c8a72c2..8643518de 100644 --- a/include/modules.h +++ b/include/modules.h @@ -158,7 +158,7 @@ enum MODType { CORE, PROTOCOL, THIRD, SUPPORTED, QATESTED, ENCRYPTION, DATABASE struct Message; extern CoreExport std::multimap<std::string, Message *> MessageMap; class Module; -extern CoreExport std::deque<Module *> Modules; +extern CoreExport std::list<Module *> Modules; /*************************************************************************/ /* Structure for information about a *Serv command. */ |