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:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-07-04 14:27:21 +0300
committerIlya Zverev <ilya@zverev.info>2017-07-10 14:08:56 +0300
commit83a05025606a463b6c87c90d538117c7502ad281 (patch)
tree9f50dd019901b39744a47f3783e38046188a0382
parente445cb9ce186cb98d166ce461c32769483bb8ef3 (diff)
review fixesbeta-902release-4
-rw-r--r--editor/osm_feature_matcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/osm_feature_matcher.cpp b/editor/osm_feature_matcher.cpp
index 094988bc31..c347ffd890 100644
--- a/editor/osm_feature_matcher.cpp
+++ b/editor/osm_feature_matcher.cpp
@@ -94,7 +94,7 @@ vector<m2::PointD> GetWaysOrRelationsGeometry(pugi::xml_document const & osmResp
/// @param wayOrRelation - either way or relation to be compared agains ourGeometry;
/// @param outGeometry - geometry of a FeatureType (ourGeometry must be sort-uniqued);
double ScoreGeometry(pugi::xml_document const & osmResponse,
- pugi::xml_node const & wayOrRelation, vector<m2::PointD> ourGeometry)
+ pugi::xml_node const & wayOrRelation, vector<m2::PointD> const & ourGeometry)
{
ASSERT(!ourGeometry.empty(), ("Our geometry cannot be empty"));
int matched = 0;