mirror of
https://github.com/anope/anope.git
synced 2026-06-25 14:06:37 +02:00
Use std::tr1::unordered_map for a few of the larger maps
This commit is contained in:
@@ -731,7 +731,7 @@ class DBPlain : public Module
|
||||
//FOREACH_MOD(I_OnDatabaseWriteMetadata, OnDatabaseWriteMetadata(WriteMetadata, na));
|
||||
}
|
||||
|
||||
for (Anope::insensitive_map<BotInfo *>::const_iterator it = BotListByNick->begin(), it_end = BotListByNick->end(); it != it_end; ++it)
|
||||
for (botinfo_map::const_iterator it = BotListByNick->begin(), it_end = BotListByNick->end(); it != it_end; ++it)
|
||||
{
|
||||
BotInfo *bi = it->second;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user