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-10-05 13:16:29 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:25:16 +0300
commit16568a93c18c619c1a11e60b550079cf114347f6 (patch)
treedbefa52fcb2e3a1a3a1e5c1bf9231cce7306dec0 /indexer/feature_loader_base.hpp
parentb91122858b8836565077ec183d290dd7cc6e5679 (diff)
Fixed some warnings
Diffstat (limited to 'indexer/feature_loader_base.hpp')
-rw-r--r--indexer/feature_loader_base.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/feature_loader_base.hpp b/indexer/feature_loader_base.hpp
index fa4a0aa52c..a2bce1c539 100644
--- a/indexer/feature_loader_base.hpp
+++ b/indexer/feature_loader_base.hpp
@@ -37,7 +37,7 @@ namespace feature
{
return m_header.GetCodingParams(scaleIndex);
}
- inline int GetScalesCount() const { return m_header.GetScalesCount(); }
+ inline int GetScalesCount() const { return static_cast<int>(m_header.GetScalesCount()); }
inline int GetScale(int i) const { return m_header.GetScale(i); }
};