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/modes.cpp | |
parent | 3eadc1509f378f26037dd3b7e1d61e0ac2d35019 (diff) |
Added patricia_tree::iterator
Diffstat (limited to 'src/modes.cpp')
-rw-r--r-- | src/modes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes.cpp b/src/modes.cpp index bc870cb1b..3a79409a6 100644 --- a/src/modes.cpp +++ b/src/modes.cpp @@ -78,7 +78,7 @@ void SetDefaultMLock(ServerConfig *config) } /* Apply the new modes to channels */ - for (patricia_tree<BotInfo *>::const_iterator it = BotListByNick.begin(), it_end = BotListByNick.end(); it != it_end; ++it) + for (patricia_tree<BotInfo *, ci::ci_char_traits>::iterator it(BotListByNick); it.next();) { BotInfo *bi = *it; |