mirror of https://github.com/CGAL/cgal
fix init order
This commit is contained in:
parent
30879a7145
commit
bd5ef7d9ea
|
|
@ -370,7 +370,8 @@ public:
|
||||||
|
|
||||||
template <class InputIterator>
|
template <class InputIterator>
|
||||||
Partition_vertex_map(InputIterator first_poly, InputIterator last_poly, const Traits& traits)
|
Partition_vertex_map(InputIterator first_poly, InputIterator last_poly, const Traits& traits)
|
||||||
: m_map(traits), traits(traits)
|
: traits(traits)
|
||||||
|
, m_map(traits)
|
||||||
{ _build(first_poly, last_poly); }
|
{ _build(first_poly, last_poly); }
|
||||||
|
|
||||||
Self_const_iterator begin() const { return m_map.begin() ; }
|
Self_const_iterator begin() const { return m_map.begin() ; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue