diff --git a/indexer/indexer_tool/kml_parser.cpp b/indexer/indexer_tool/kml_parser.cpp index 8ed7db55c2..eb82c08203 100644 --- a/indexer/indexer_tool/kml_parser.cpp +++ b/indexer/indexer_tool/kml_parser.cpp @@ -95,14 +95,6 @@ namespace kml m_container.push_back(mercPoint); } }; - - m2::PointU MercatorPointToPointU(m2::PointD const & pt) - { - typedef CellIdConverter CellIdConverterType; - uint32_t const ix = static_cast(CellIdConverterType::XToCellIdX(pt.x)); - uint32_t const iy = static_cast(CellIdConverterType::YToCellIdY(pt.y)); - return m2::PointU(ix, iy); - } class AreaFeature : public FeatureType {