From 1741afd848e1b8789f0b3df4c4501314e305a613 Mon Sep 17 00:00:00 2001 From: Yury Melnichek Date: Mon, 25 Apr 2011 13:15:43 +0200 Subject: [PATCH] No-op change: rename function parameter. --- indexer/covering.cpp | 4 ++-- indexer/covering.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/indexer/covering.cpp b/indexer/covering.cpp index f5bd3cac8e..9fb5222abc 100644 --- a/indexer/covering.cpp +++ b/indexer/covering.cpp @@ -59,7 +59,7 @@ public: } vector covering::CoverFeature(FeatureType const & f, - uint64_t cellPenaltyAreaPerNode) + uint64_t cellPenaltyArea) { FeatureIntersector featureIntersector; f.ForEachPointRef(featureIntersector, -1); @@ -76,7 +76,7 @@ vector covering::CoverFeature(FeatureType const & f, } vector cells; - covering::CoverObject(featureIntersector, cellPenaltyAreaPerNode, cells, RectId::Root()); + covering::CoverObject(featureIntersector, cellPenaltyArea, cells, RectId::Root()); vector res(cells.size()); for (size_t i = 0; i < cells.size(); ++i) diff --git a/indexer/covering.hpp b/indexer/covering.hpp index 2c650821fe..14c93d769d 100644 --- a/indexer/covering.hpp +++ b/indexer/covering.hpp @@ -13,7 +13,7 @@ namespace covering { // Cover feature with RectIds and return their integer representations. vector CoverFeature(FeatureType const & feature, - uint64_t cellPenaltyAreaPerNode); + uint64_t cellPenaltyArea); // Cover viewport with RectIds and append their RectIds as well. vector > CoverViewportAndAppendLowerLevels(m2::RectD const & rect); // Given a vector of intervals [a, b), sort them and merge overlapping intervals.