Apply style fix pt5

This commit is contained in:
Antz 2020-01-14 13:12:16 +00:00
parent 4727d8846f
commit 1a1110b4f7
67 changed files with 648 additions and 214 deletions

View file

@ -1172,7 +1172,9 @@ uint32 Guild::GetAccountsNumber()
// We use a set to be sure each element will be unique
std::set<uint32> accountsIdSet;
for (MemberList::const_iterator itr = members.begin(); itr != members.end(); ++itr)
{ accountsIdSet.insert(itr->second.accountId); }
{
accountsIdSet.insert(itr->second.accountId);
}
m_accountsNumber = accountsIdSet.size();