]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_ircv3.cpp
m_spanningtree Update comments around collision handling
[user/henk/code/inspircd.git] / src / modules / m_ircv3.cpp
index 65fb7ddb59e985c4d54243f3ceedc53eea91cd80..4eb54d2a6f7af6413999b3968868ff23740a6d0a 100644 (file)
@@ -135,7 +135,7 @@ class ModuleIRCv3 : public Module
                std::string mode;
 
                const Channel::MemberMap& userlist = memb->chan->GetUsers();
-               for (UserMembCIter it = userlist.begin(); it != userlist.end(); ++it)
+               for (Channel::MemberMap::const_iterator it = userlist.begin(); it != userlist.end(); ++it)
                {
                        // Send the extended join line if the current member is local, has the extended-join cap and isn't excepted
                        User* member = IS_LOCAL(it->first);
@@ -209,7 +209,7 @@ class ModuleIRCv3 : public Module
                std::string line = ":" + memb->user->GetFullHost() + " AWAY :" + memb->user->awaymsg;
 
                const Channel::MemberMap& userlist = memb->chan->GetUsers();
-               for (UserMembCIter it = userlist.begin(); it != userlist.end(); ++it)
+               for (Channel::MemberMap::const_iterator it = userlist.begin(); it != userlist.end(); ++it)
                {
                        // Send the away notify line if the current member is local, has the away-notify cap and isn't excepted
                        User* member = IS_LOCAL(it->first);