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>2014-11-05 02:56:55 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:32:16 +0300
commitdfb1644047eee71484007806b53457ed4f4f03ff (patch)
tree4a4b9df86b67ab8f591238feeff8f285a7ae864c /map/map_tests
parent39818e3e081419e1307017bf90acc9a886eb64b8 (diff)
Minor refaсtoring: removed CoordPointT typedef to avoid disambiguate.
Diffstat (limited to 'map/map_tests')
-rw-r--r--map/map_tests/feature_processor_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/map_tests/feature_processor_test.cpp b/map/map_tests/feature_processor_test.cpp
index 269e2b20c7..b04fdbaffa 100644
--- a/map/map_tests/feature_processor_test.cpp
+++ b/map/map_tests/feature_processor_test.cpp
@@ -63,7 +63,7 @@ UNIT_TEST(PathPoints_ClipAsIntervals)
cut_functor_t cut_fun(cp);
for (size_t i = 0; i < ARRAY_SIZE(pts); ++i)
- cut_fun(CoordPointT(pts[i].x, pts[i].y));
+ cut_fun(pts[i]);
m2::PointD res1[] = {
m2::PointD(5, 10),