diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-03-25 11:02:44 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-03-25 11:02:44 +0100 |
commit | bc730a5d1a6df1c3ff5000a96eda6e153134ae04 (patch) | |
tree | 2ff1ea243f80f9ca0e80bb2c0781cdf13f8fc2fc /src/coremods | |
parent | ef0fecc856d435ff140ce87ca38618d6edceafcc (diff) |
Add typedef OperList to UserManager for use with all_opers
Diffstat (limited to 'src/coremods')
-rw-r--r-- | src/coremods/core_stats.cpp | 3 | ||||
-rw-r--r-- | src/coremods/core_who.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/coremods/core_stats.cpp b/src/coremods/core_stats.cpp index 4f53f3270..a593ac94d 100644 --- a/src/coremods/core_stats.cpp +++ b/src/coremods/core_stats.cpp @@ -146,7 +146,8 @@ void CommandStats::DoStats(char statschar, User* user, string_list &results) case 'P': { unsigned int idx = 0; - for (std::list<User*>::const_iterator i = ServerInstance->Users->all_opers.begin(); i != ServerInstance->Users->all_opers.end(); ++i) + const UserManager::OperList& opers = ServerInstance->Users->all_opers; + for (UserManager::OperList::const_iterator i = opers.begin(); i != opers.end(); ++i) { User* oper = *i; if (!oper->server->IsULine()) diff --git a/src/coremods/core_who.cpp b/src/coremods/core_who.cpp index 523d857ce..670f05a90 100644 --- a/src/coremods/core_who.cpp +++ b/src/coremods/core_who.cpp @@ -347,7 +347,8 @@ CmdResult CommandWho::Handle (const std::vector<std::string>& parameters, User * if (opt_viewopersonly) { /* Showing only opers */ - for (std::list<User*>::iterator i = ServerInstance->Users->all_opers.begin(); i != ServerInstance->Users->all_opers.end(); i++) + const UserManager::OperList& opers = ServerInstance->Users->all_opers; + for (UserManager::OperList::const_iterator i = opers.begin(); i != opers.end(); ++i) { User* oper = *i; |