forked from organicmaps/organicmaps
Fix msvc warning.
This commit is contained in:
parent
e8f4244c70
commit
7ca3b6461d
1 changed files with 3 additions and 1 deletions
|
@ -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<m2::PointD> m_Polyline;
|
||||
vector<Trg> m_Trg;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue