mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-10 23:42:12 +00:00
[point_iterator] fix constructor calls for concatenate_iterator
This commit is contained in:
@@ -69,6 +69,9 @@ struct points_begin<Polygon, polygon_tag>
|
||||
return return_type
|
||||
(boost::begin(geometry::exterior_ring(polygon)),
|
||||
boost::end(geometry::exterior_ring(polygon)),
|
||||
flatten_iterator(boost::begin(geometry::interior_rings(polygon)),
|
||||
boost::end(geometry::interior_rings(polygon))
|
||||
),
|
||||
flatten_iterator(boost::begin(geometry::interior_rings(polygon)),
|
||||
boost::end(geometry::interior_rings(polygon))
|
||||
)
|
||||
@@ -163,6 +166,9 @@ struct points_end<Polygon, polygon_tag>
|
||||
|
||||
return return_type
|
||||
(boost::end(geometry::exterior_ring(polygon)),
|
||||
flatten_iterator(boost::begin(geometry::interior_rings(polygon)),
|
||||
boost::end(geometry::interior_rings(polygon))
|
||||
),
|
||||
flatten_iterator( boost::end(geometry::interior_rings(polygon)) )
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user