diff --git a/indexer/covering.cpp b/indexer/covering.cpp index 9fb5222abc..a6dacfb65d 100644 --- a/indexer/covering.cpp +++ b/indexer/covering.cpp @@ -18,8 +18,10 @@ public: struct Trg { m2::PointD m_A, m_B, m_C; - Trg(m2::PointU a, m2::PointU b, m2::PointU c) : m_A(a), m_B(b), m_C(c) {} + Trg(m2::PointD const & a, m2::PointD const & b, m2::PointD const & c) + : m_A(a), m_B(b), m_C(c) {} }; + vector m_Polyline; vector m_Trg;