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:
authortatiana-kondakova <tatiana.kondakova@gmail.com>2018-02-08 17:15:24 +0300
committerSlava <slovaricheg@gmail.com>2018-02-08 19:05:24 +0300
commit2de1eca620e55563a906943233405b339c1c8a67 (patch)
tree617517bb959fa8fe3b0358a1997f4c553849e3b9 /indexer
parent82098ef697683c7e124efe4ac287ca792eb80f2d (diff)
Fix gcc5 build
Diffstat (limited to 'indexer')
-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 9e8af7c47a..01dc620006 100644
--- a/indexer/feature_covering.cpp
+++ b/indexer/feature_covering.cpp
@@ -90,11 +90,11 @@ public:
return CELL_OBJECT_NO_INTERSECTION;
}
- using CellIdConverter = CellIdConverter<MercatorBounds, m2::CellId<DEPTH_LEVELS>>;
+ using Converter = CellIdConverter<MercatorBounds, m2::CellId<DEPTH_LEVELS>>;
m2::PointD ConvertPoint(m2::PointD const & p)
{
- m2::PointD const pt(CellIdConverter::XToCellIdX(p.x), CellIdConverter::YToCellIdY(p.y));
+ m2::PointD const pt(Converter::XToCellIdX(p.x), Converter::YToCellIdY(p.y));
m_rect.Add(pt);
return pt;
}