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 <syershov@maps.me>2017-01-13 13:48:35 +0300
committerSergey Yershov <syershov@maps.me>2017-01-13 19:09:10 +0300
commitb449b488587ed836adad64a198f1cf8707714c74 (patch)
tree2379d851e2ba59039cd0b56abd3f0a559f276fbe /indexer/feature_impl.hpp
parentf7efe4fd53d99a2d0b178abc24ff0ad2c2a0dcb5 (diff)
Fix warnings.
Diffstat (limited to 'indexer/feature_impl.hpp')
-rw-r--r--indexer/feature_impl.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/feature_impl.hpp b/indexer/feature_impl.hpp
index ea1ba79950..e5b195620f 100644
--- a/indexer/feature_impl.hpp
+++ b/indexer/feature_impl.hpp
@@ -14,7 +14,7 @@ namespace feature
static int const g_arrWorldScales[] = { 3, 5, 7, 9 }; // 9 = scales::GetUpperWorldScale()
static int const g_arrCountryScales[] = { 10, 12, 14, 17 }; // 17 = scales::GetUpperScale()
- inline string GetTagForIndex(char const * prefix, int ind)
+ inline string GetTagForIndex(char const * prefix, size_t ind)
{
string str;
str.reserve(strlen(prefix) + 1);