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:
authorvng <viktor.govako@gmail.com>2015-03-21 12:55:05 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:57:09 +0300
commit792311a255f844b940fee3ade42fda4195cbaa0f (patch)
tree58314904937f4b7fdf2ac2e4e675d84e98790203 /map/mwm_tests
parentb7e5bc5301e1563664028677d36711a4a0872fee (diff)
Feature index refactoring.
Diffstat (limited to 'map/mwm_tests')
-rw-r--r--map/mwm_tests/mwm_foreach_test.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/map/mwm_tests/mwm_foreach_test.cpp b/map/mwm_tests/mwm_foreach_test.cpp
index ce23dc7eea..f9f8c3a3f4 100644
--- a/map/mwm_tests/mwm_foreach_test.cpp
+++ b/map/mwm_tests/mwm_foreach_test.cpp
@@ -49,12 +49,12 @@ protected:
void add(FeatureType const & f) const
{
TEST(f.GetID().IsValid(), ());
- m_cont.push_back(f.GetID().m_offset);
+ m_cont.push_back(f.GetID().m_ind);
}
- void add(FeatureType const &, uint32_t offset) const
+ void add(FeatureType const &, uint32_t ind) const
{
- m_cont.push_back(offset);
+ m_cont.push_back(ind);
}
public:
@@ -167,10 +167,10 @@ public:
{
}
- void operator() (FeatureType const & f, uint64_t offset) const
+ void operator() (FeatureType const & f, uint32_t ind) const
{
if (is_drawable(f) && is_intersect(f))
- add(f, offset);
+ add(f, ind);
}
};
@@ -228,20 +228,20 @@ bool compare_sequence(TCont const & etalon, TCont const & test, TCompare comp, s
class FindOffset
{
int m_level;
- uint32_t m_offset;
+ uint32_t m_index;
public:
- FindOffset(int level, uint32_t offset)
- : m_level(level), m_offset(offset)
+ FindOffset(int level, uint32_t ind)
+ : m_level(level), m_index(ind)
{}
- void operator() (FeatureType const & f, uint64_t offset)
+ void operator() (FeatureType const & f, uint32_t ind)
{
- if (offset == m_offset)
+ if (ind == m_index)
{
TEST(IsDrawable(f, m_level), ());
- LOG(LINFO, ("Feature offset:", offset));
+ LOG(LINFO, ("Feature index:", ind));
LOG(LINFO, ("Feature:", f));
}
}