diff options
| author | Adam <Adam@anope.org> | 2013-04-07 23:46:44 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2013-04-07 23:46:44 -0500 |
| commit | fb7fef7a849342ab8463743497e781c5c3e6ae88 (patch) | |
| tree | 5d230a68b6eed70c7b4f718410dd62fea779654c /modules/extra | |
| parent | 36602224b8b1a11326a224779d16bcb12f0ed532 (diff) | |
Optimizations of much of the more commonly used code
Diffstat (limited to 'modules/extra')
| -rw-r--r-- | modules/extra/cs_statusupdate.cpp | 4 | ||||
| -rw-r--r-- | modules/extra/m_xmlrpc_main.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/extra/cs_statusupdate.cpp b/modules/extra/cs_statusupdate.cpp index 97faae851..4a53956d7 100644 --- a/modules/extra/cs_statusupdate.cpp +++ b/modules/extra/cs_statusupdate.cpp @@ -36,7 +36,7 @@ class StatusUpdate : public Module if (ci->c) for (Channel::ChanUserList::iterator it = ci->c->users.begin(), it_end = ci->c->users.end(); it != it_end; ++it) { - User *user = (*it)->user; + User *user = it->second->user; if (access->Matches(user, user->Account())) { @@ -53,7 +53,7 @@ class StatusUpdate : public Module if (ci->c) for (Channel::ChanUserList::iterator it = ci->c->users.begin(), it_end = ci->c->users.end(); it != it_end; ++it) { - User *user = (*it)->user; + User *user = it->second->user; if (access->Matches(user, user->Account())) { diff --git a/modules/extra/m_xmlrpc_main.cpp b/modules/extra/m_xmlrpc_main.cpp index e4b761cc7..9166f27df 100644 --- a/modules/extra/m_xmlrpc_main.cpp +++ b/modules/extra/m_xmlrpc_main.cpp @@ -174,7 +174,7 @@ class MyXMLRPCEvent : public XMLRPCEvent Anope::string users; for (Channel::ChanUserList::const_iterator it = c->users.begin(); it != c->users.end(); ++it) { - ChanUserContainer *uc = *it; + ChanUserContainer *uc = it->second; users += uc->status.BuildModePrefixList() + uc->user->nick + " "; } if (!users.empty()) @@ -226,7 +226,7 @@ class MyXMLRPCEvent : public XMLRPCEvent Anope::string channels; for (User::ChanUserList::const_iterator it = u->chans.begin(); it != u->chans.end(); ++it) { - ChanUserContainer *cc = *it; + ChanUserContainer *cc = it->second; channels += cc->status.BuildModePrefixList() + cc->chan->name + " "; } if (!channels.empty()) |
