diff --git a/indexer/feature.hpp b/indexer/feature.hpp index 630f9e0da2..19c01f988c 100644 --- a/indexer/feature.hpp +++ b/indexer/feature.hpp @@ -407,7 +407,7 @@ public: { } - geom_stat_t() : m_count(0), m_size(0) {} + geom_stat_t() : m_size(0), m_count(0) {} }; geom_stat_t GetGeometrySize(int scale) const; diff --git a/map/map_tests/map_foreach_test.cpp b/map/map_tests/map_foreach_test.cpp index d64ccf9141..d4a06bf6a6 100644 --- a/map/map_tests/map_foreach_test.cpp +++ b/map/map_tests/map_foreach_test.cpp @@ -206,7 +206,7 @@ namespace public: FindOffset(int level, pair const & test) - : m_test(test), m_level(level) + : m_level(level), m_test(test) {} void operator() (FeatureType const & f, uint64_t offset)