Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/map
diff options
context:
space:
mode:
authoralexzatsepin <az@mapswithme.com>2016-12-02 18:03:51 +0300
committeralexzatsepin <az@mapswithme.com>2016-12-02 18:07:25 +0300
commit9b5011a3955f244fd91a1d95b386b0e4df2e6f8e (patch)
tree143fed7ba4dab0f8174fa3aceac5521a1b0a208b /map
parentb11b1e23e2317dd7c0abd40b33f5f13750214706 (diff)
[android] Fixed the thread in traffic manager
Diffstat (limited to 'map')
-rw-r--r--map/traffic_manager.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/map/traffic_manager.hpp b/map/traffic_manager.hpp
index 865fd565e1..b14cac579a 100644
--- a/map/traffic_manager.hpp
+++ b/map/traffic_manager.hpp
@@ -13,12 +13,13 @@
#include "indexer/index.hpp"
#include "indexer/mwm_set.hpp"
+#include "base/thread.hpp"
+
#include "std/atomic.hpp"
#include "std/chrono.hpp"
#include "std/map.hpp"
#include "std/mutex.hpp"
#include "std/set.hpp"
-#include "std/thread.hpp"
#include "std/vector.hpp"
namespace df
@@ -134,5 +135,5 @@ private:
vector<MwmSet::MwmId> m_requestedMwms;
mutex m_mutex;
- thread m_thread;
+ threads::SimpleThread m_thread;
};