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:
authorConstantin Shalnev <c.shalnev@corp.mail.ru>2015-08-07 14:01:43 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:59:45 +0300
commit6b2e9a12d7baf4fca7d31670e050148759b8360b (patch)
treeb14b6f4e8eb31452ae9c0f9bc355b3f469e70518 /map/framework.hpp
parent6b79a2d27c7b11eb3ab6a7427a8cd6658826332f (diff)
Added thread checkers for routing
Diffstat (limited to 'map/framework.hpp')
-rw-r--r--map/framework.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/map/framework.hpp b/map/framework.hpp
index 8f49ae66c2..2d143b6128 100644
--- a/map/framework.hpp
+++ b/map/framework.hpp
@@ -48,6 +48,7 @@
#include "base/macros.hpp"
#include "base/strings_bundle.hpp"
+#include "base/thread_checker.hpp"
#include "std/vector.hpp"
#include "std/shared_ptr.hpp"
@@ -617,4 +618,8 @@ public:
private:
bool m_isFullScreenMode = false;
//@}
+
+#ifdef DEBUG
+ ThreadChecker m_threadChecker;
+#endif // DEBUG
};