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:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-02-07 16:06:45 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:16:53 +0300
commit54fa2ac1c7fff965b1a504a265db719cc89aafff (patch)
tree8618f54228577a0cac1b04c0cd8e1652d5b01b56 /indexer/feature_covering.cpp
parentb7b08920aa17ddb2514fc7dc83a794d7ef11a193 (diff)
Join ForEachPoint and ForEachPointRef.
Join ForEachTriangle and ForEachTriangleRef.
Diffstat (limited to 'indexer/feature_covering.cpp')
-rw-r--r--indexer/feature_covering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/feature_covering.cpp b/indexer/feature_covering.cpp
index 4503e1de88..cac448f734 100644
--- a/indexer/feature_covering.cpp
+++ b/indexer/feature_covering.cpp
@@ -126,8 +126,8 @@ vector<int64_t> CoverFeature(FeatureType const & f, int cellDepth, uint64_t cell
int const scale = FeatureType::BEST_GEOMETRY;
FeatureIntersector fIsect;
- f.ForEachPointRef(fIsect, scale);
- f.ForEachTriangleRef(fIsect, scale);
+ f.ForEachPoint(fIsect, scale);
+ f.ForEachTriangle(fIsect, scale);
CHECK(!(fIsect.m_trg.empty() && fIsect.m_polyline.empty()) &&
f.GetLimitRect(scale).IsValid(), (f.DebugString(scale)));