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 /modules/extra/db_mysql.cpp | |
parent | 3eadc1509f378f26037dd3b7e1d61e0ac2d35019 (diff) |
Added patricia_tree::iterator
Diffstat (limited to 'modules/extra/db_mysql.cpp')
-rw-r--r-- | modules/extra/db_mysql.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/db_mysql.cpp b/modules/extra/db_mysql.cpp index b90ab0834..180b66463 100644 --- a/modules/extra/db_mysql.cpp +++ b/modules/extra/db_mysql.cpp @@ -745,7 +745,7 @@ class DBMySQL : public Module FOREACH_MOD(I_OnDatabaseWriteMetadata, OnDatabaseWriteMetadata(WriteChannelMetadata, CurChannel)); } - 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();) { CurBot = *it; FOREACH_MOD(I_OnDatabaseWriteMetadata, OnDatabaseWriteMetadata(WriteBotMetadata, CurBot)); @@ -1315,7 +1315,7 @@ static void SaveDatabases() me->RunQuery("TRUNCATE TABLE `anope_bs_core`"); - 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();) me->OnBotCreate(*it); me->RunQuery("TRUNCATE TABLE `anope_cs_info`"); |