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
diff options
context:
space:
mode:
authorExMix <rahuba.youri@mapswithme.com>2015-03-31 11:40:18 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:04:12 +0300
commit475d0bcbcc7514e770818b8d17f4156ec5842c15 (patch)
tree9442f7cc15c98ee4054269e6d21e5d32438b2800 /drape_frontend/tile_info.hpp
parentbd950780e20ed589d30a86c0aef0d063f36a4ebe (diff)
review fixes
Diffstat (limited to 'drape_frontend/tile_info.hpp')
-rw-r--r--drape_frontend/tile_info.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/drape_frontend/tile_info.hpp b/drape_frontend/tile_info.hpp
index 872be0c1cb..31e948f174 100644
--- a/drape_frontend/tile_info.hpp
+++ b/drape_frontend/tile_info.hpp
@@ -9,6 +9,7 @@
#include "base/exception.hpp"
#include "base/mutex.hpp"
+#include "std/atomic.hpp"
#include "std/mutex.hpp"
#include "std/noncopyable.hpp"
#include "std/vector.hpp"
@@ -50,7 +51,7 @@ private:
EngineContext m_context;
vector<FeatureInfo> m_featureInfo;
- bool m_isCanceled;
+ atomic<bool> m_isCanceled;
mutex m_mutex;
};