diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-14 16:15:38 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-14 16:15:38 +0200 |
commit | fb8cb2114483689c5a52f951e301c31bdd2a60a2 (patch) | |
tree | 5a9b7151400618402451eb054e1c7fd78e185d12 /src/modules/m_deaf.cpp | |
parent | 04ece67c3d8534f74a3d75ec77378cb57a9c044e (diff) |
Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator instead
Diffstat (limited to 'src/modules/m_deaf.cpp')
-rw-r--r-- | src/modules/m_deaf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_deaf.cpp b/src/modules/m_deaf.cpp index aaca6c049..fd9b322c0 100644 --- a/src/modules/m_deaf.cpp +++ b/src/modules/m_deaf.cpp @@ -77,7 +77,7 @@ class ModuleDeaf : public Module return MOD_RES_PASSTHRU; const Channel::MemberMap& ulist = chan->GetUsers(); - for (UserMembCIter i = ulist.begin(); i != ulist.end(); ++i) + for (Channel::MemberMap::const_iterator i = ulist.begin(); i != ulist.end(); ++i) { /* not +d ? */ if (!i->first->IsModeSet(m1)) |