From 825a4fc4403a9731768d1db9db95dc709a42f813 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 7 May 2014 23:35:44 +0200 Subject: [PATCH] Correction of some misspelling --- src/core/receiver/concurrent_map.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/core/receiver/concurrent_map.h b/src/core/receiver/concurrent_map.h index d0734092c..53acae268 100644 --- a/src/core/receiver/concurrent_map.h +++ b/src/core/receiver/concurrent_map.h @@ -15,7 +15,7 @@ * GNSS-SDR is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or - * at your option) any later version. + * (at your option) any later version. * * GNSS-SDR is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -44,7 +44,7 @@ template */ class concurrent_map { - typedef typename std::map::iterator Data_iterator; //iterator is ambit dependant + typedef typename std::map::iterator Data_iterator; // iterator is scope dependent private: std::map the_map; boost::mutex the_mutex; @@ -52,15 +52,16 @@ public: void write(int key, Data const& data) { boost::mutex::scoped_lock lock(the_mutex); - Data_iterator data_iter; data_iter = the_map.find(key); if (data_iter != the_map.end()) - { - data_iter->second=data; //update - }else{ - the_map.insert(std::pair(key, data));//insert SILENTLY fails if the item exist in the map!! - } + { + data_iter->second = data; // update + } + else + { + the_map.insert(std::pair(key, data)); // insert SILENTLY fails if the item already exists in the map! + } lock.unlock(); }