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:
-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;