From 53b2bdfe5e157a9e5ca5d08873edebcd04511ae1 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 5 Nov 2012 22:17:47 -0500 Subject: Use std::tr1::unordered_map for a few of the larger maps --- modules/commands/cs_akick.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/cs_akick.cpp') diff --git a/modules/commands/cs_akick.cpp b/modules/commands/cs_akick.cpp index 6c0dfa386..1425d1636 100644 --- a/modules/commands/cs_akick.cpp +++ b/modules/commands/cs_akick.cpp @@ -95,7 +95,7 @@ class CommandCSAKick : public Command { /* Match against all currently online users with equal or * higher access. - Viper */ - for (Anope::insensitive_map::iterator it = UserListByNick.begin(), it_end = UserListByNick.end(); it != it_end; ++it) + for (user_map::const_iterator it = UserListByNick.begin(); it != UserListByNick.end(); ++it) { User *u2 = it->second; -- cgit