diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-11-21 00:15:13 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-29 23:41:22 +0100 |
commit | a589577b68cb84bc877ecdd4c0f9cb84a1581ddd (patch) | |
tree | 37a4f52f9bcac855d7fa2198f991a2fc919ea738 /src/inspircd.cpp | |
parent | 83db3dc06a44b50d8e25828e201a51edb4030d92 (diff) |
Add a typedef for LocalUserList
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index cb50595d2..0a3bc1820 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -119,7 +119,7 @@ void InspIRCd::Cleanup() ports.clear(); /* Close all client sockets, or the new process inherits them */ - std::vector<LocalUser*>::reverse_iterator i = Users->local_users.rbegin(); + LocalUserList::reverse_iterator i = Users->local_users.rbegin(); while (i != this->Users->local_users.rend()) { User* u = *i++; @@ -219,7 +219,7 @@ void InspIRCd::RehashUsersAndChans() // Reset the already_sent IDs so we don't wrap it around and drop a message LocalUser::already_sent_id = 0; - for (std::vector<LocalUser*>::const_iterator i = Users->local_users.begin(); i != Users->local_users.end(); i++) + for (LocalUserList::const_iterator i = Users->local_users.begin(); i != Users->local_users.end(); i++) { (**i).already_sent = 0; (**i).RemoveExpiredInvites(); |