1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 07:13:13 +02:00

Store modules in a list and xlines in a vector, not deques. We need to be able to keep iterators valid.

This commit is contained in:
Adam
2010-06-20 21:33:01 -04:00
parent 0d2d7e9968
commit 17040c088a
7 changed files with 23 additions and 28 deletions
+1 -1
View File
@@ -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. */