aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_channames.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-07-14 16:15:38 +0200
committerGravatar Attila Molnar2014-07-14 16:15:38 +0200
commitfb8cb2114483689c5a52f951e301c31bdd2a60a2 (patch)
tree5a9b7151400618402451eb054e1c7fd78e185d12 /src/modules/m_channames.cpp
parentRename UserMembList to Channel::MemberMap, switch all code to use it (diff)
downloadinspircd++-fb8cb2114483689c5a52f951e301c31bdd2a60a2.tar.gz
inspircd++-fb8cb2114483689c5a52f951e301c31bdd2a60a2.tar.bz2
inspircd++-fb8cb2114483689c5a52f951e301c31bdd2a60a2.zip
Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator instead
Diffstat (limited to 'src/modules/m_channames.cpp')
-rw-r--r--src/modules/m_channames.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_channames.cpp b/src/modules/m_channames.cpp
index b4266e63b..1483d8cd7 100644
--- a/src/modules/m_channames.cpp
+++ b/src/modules/m_channames.cpp
@@ -133,7 +133,7 @@ class ModuleChannelNames : public Module
if (badchan)
{
const Channel::MemberMap& users = memb->chan->GetUsers();
- for (UserMembCIter i = users.begin(); i != users.end(); ++i)
+ for (Channel::MemberMap::const_iterator i = users.begin(); i != users.end(); ++i)
if (i->first != memb->user)
except_list.insert(i->first);
}