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:
authorSergey Yershov <yershov@corp.mail.ru>2015-03-17 16:04:42 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:39:56 +0300
commit3848db2389318c41b7c29a74cf9e5f2ba7e331dc (patch)
treed2716c5a3d833c768dd4f94b22944c1fee18f822 /indexer/classificator.cpp
parenta97b51a6aaa759dc584f6f133d7aeee739aad62c (diff)
fixed warning in [indexer]
Diffstat (limited to 'indexer/classificator.cpp')
-rw-r--r--indexer/classificator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/classificator.cpp b/indexer/classificator.cpp
index f89b2aeb89..9220c5d201 100644
--- a/indexer/classificator.cpp
+++ b/indexer/classificator.cpp
@@ -328,7 +328,7 @@ pair<int, int> ClassifObject::GetDrawScaleRange() const
if (!IsDrawableAny())
return make_pair(-1, -1);
- size_t const count = m_visibility.size();
+ int const count = static_cast<int>(m_visibility.size());
int left = -1;
for (int i = 0; i < count; ++i)