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:
authorAlex Zolotarev <deathbaba@gmail.com>2011-04-26 04:41:04 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:16:29 +0300
commit64cb846aad9f730c67a13576bb04df62bbb31c23 (patch)
tree5aacd1b8520004021e1c448d813c02c90ac97bbf /indexer/feature.cpp
parent370d44264878b06f3e662fc40a2b75cd03f2b3ad (diff)
Warning fixes
Diffstat (limited to 'indexer/feature.cpp')
-rw-r--r--indexer/feature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/feature.cpp b/indexer/feature.cpp
index 2b9ff42098..8accf58a70 100644
--- a/indexer/feature.cpp
+++ b/indexer/feature.cpp
@@ -912,7 +912,7 @@ void FeatureType::ReadOffsets(ArrayByteSource & src, uint8_t mask, offsets_t & o
{
ASSERT_GREATER ( mask, 0, () );
- int index = 0;
+ size_t index = 0;
while (mask > 0)
{
ASSERT_LESS ( index, m_header->GetScalesCount(), () );