diff options
author | Adam <Adam@anope.org> | 2011-01-28 23:09:25 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-01-28 23:09:25 -0500 |
commit | e62664138b42437186669952a5c1a848c2cdfb02 (patch) | |
tree | 803ca8c6ba64bcaf1ed70fbcfac41878f1204063 /src/init.cpp | |
parent | 3eadc1509f378f26037dd3b7e1d61e0ac2d35019 (diff) |
Added patricia_tree::iterator
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index fc53d6a2b..6ee84478a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -57,7 +57,7 @@ void introduce_user(const Anope::string &user) } /* We make the bots go online */ - for (patricia_tree<User *>::const_iterator it = UserListByNick.begin(), it_end = UserListByNick.end(); it != it_end; ++it) + for (patricia_tree<User *, ci::ci_char_traits>::iterator it(UserListByNick); it.next();) { User *u = *it; |