mirror of
https://github.com/anope/anope.git
synced 2026-07-08 10:23:14 +02:00
Fixed compile
This commit is contained in:
@@ -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())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user