1
0

changed from using iterator to auto for server and clienthandle

This commit is contained in:
Vincent
2014-12-07 12:41:42 -08:00
parent 20dcceb7e6
commit 8edfd78295
2 changed files with 4 additions and 4 deletions

View File

@@ -308,9 +308,9 @@ std::list<AString> cServer::GetUsernames()
{
std::list<AString> usernames;
cCSLock Lock(m_CSClients);
for (ClientList::iterator itr = m_Clients.begin(); itr != m_Clients.end(); ++itr)
for (auto client : m_Clients)
{
AString username = (*itr)->GetUsername();
AString username = (client)->GetUsername();
usernames.insert(usernames.begin(),username);
}
return usernames;