* #28351: managerimpl: use item instead of iter

This commit is contained in:
Tristan Matthews
2013-08-14 12:02:15 -04:00
parent cacbed044d
commit c9f38b0ee5

View File

@ -1352,8 +1352,8 @@ void ManagerImpl::addStream(const std::string& call_id)
ParticipantSet participants(conf->getParticipantList());
// reset ring buffer for all conference participant
for (const auto &iter_p : participants)
getMainBuffer().flush(iter_p);
for (const auto &participant : participants)
getMainBuffer().flush(participant);
getMainBuffer().flush(MainBuffer::DEFAULT_ID);
}
@ -2936,8 +2936,8 @@ ManagerImpl::registerAccounts()
{
AccountMap allAccounts(getAllAccounts());
for (auto &iter : allAccounts) {
Account *a = iter.second;
for (auto &item : allAccounts) {
Account *a = item.second;
if (!a)
continue;