1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 10:23:14 +02:00

Fixed compile

This commit is contained in:
Adam
2011-03-14 20:16:38 -04:00
parent 2555d0d637
commit ddfb16de1a
32 changed files with 122 additions and 158 deletions
+2 -2
View File
@@ -53,9 +53,9 @@ class CommandOSUserList : public Command
source.Reply(_("Users list:\n"
"Nick Mask"));
for (patricia_tree<User *, ci::ci_char_traits>::iterator it(UserListByNick); it.next();)
for (Anope::insensitive_map<User *>::iterator it = UserListByNick.begin(); it != UserListByNick.end(); ++it)
{
User *u2 = *it;
User *u2 = it->second;
if (!pattern.empty())
{