aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_check.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_check.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_check.cpp')
-rw-r--r--src/modules/m_check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp
index ce576baf1..75c6a4399 100644
--- a/src/modules/m_check.cpp
+++ b/src/modules/m_check.cpp
@@ -227,7 +227,7 @@ class CommandCheck : public Command
const Channel::MemberMap& ulist = targchan->GetUsers();
/* note that unlike /names, we do NOT check +i vs in the channel */
- for (UserMembCIter i = ulist.begin(); i != ulist.end(); ++i)
+ for (Channel::MemberMap::const_iterator i = ulist.begin(); i != ulist.end(); ++i)
{
/*
* Unlike Asuka, I define a clone as coming from the same host. --w00t