mirror of
https://github.com/anope/anope.git
synced 2026-07-02 14:13:12 +02:00
Use std::tr1::unordered_map for a few of the larger maps
This commit is contained in:
@@ -29,7 +29,7 @@ class CommandBSBotList : public Command
|
||||
|
||||
list.addColumn("Nick").addColumn("Mask");
|
||||
|
||||
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