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:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-03-21 12:35:00 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2017-03-22 15:48:06 +0300
commit431299e98329b863b2518ed863c918bc0501256d (patch)
treec36c2e412182daa911c4ed17cf81c3b8b416129d /indexer/feature_impl.cpp
parent655b6f0a2833dc39a8c08199ecde85b5c739088b (diff)
warnings fix
Diffstat (limited to 'indexer/feature_impl.cpp')
-rw-r--r--indexer/feature_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/feature_impl.cpp b/indexer/feature_impl.cpp
index eda4428cde..04f4d18a7a 100644
--- a/indexer/feature_impl.cpp
+++ b/indexer/feature_impl.cpp
@@ -38,7 +38,7 @@ bool IsStreetNumber(strings::UniString const & s)
bool flag = false;
for (size_t j = 0; j < streetEndings[i].size(); ++j)
{
- if (streetEndings[i][j] != s[start + j])
+ if (streetEndings[i][j] != static_cast<char>(s[start + j]))
{
flag = true;
break;