From c9f38b0ee5a6381c63f64d3521bc22d596f232fb Mon Sep 17 00:00:00 2001
From: Tristan Matthews <tristan.matthews@savoirfairelinux.com>
Date: Wed, 14 Aug 2013 12:02:15 -0400
Subject: [PATCH] * #28351: managerimpl: use item instead of iter

---
 daemon/src/managerimpl.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/daemon/src/managerimpl.cpp b/daemon/src/managerimpl.cpp
index f987210a50..133b89ae60 100644
--- a/daemon/src/managerimpl.cpp
+++ b/daemon/src/managerimpl.cpp
@@ -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;
-- 
GitLab