[point_iterator] define points_{begin,end} as inline free functions;

This commit is contained in:
Menelaos Karavelas
2014-03-27 02:11:02 +02:00
parent bed33a7ee4
commit 555947d8e2

View File

@@ -219,7 +219,7 @@ struct points_end<MultiPolygon, multi_polygon_tag>
// MK:: need to add doc here
template <typename Geometry>
typename point_iterator_type<Geometry>::type
inline typename point_iterator_type<Geometry>::type
points_begin(Geometry& geometry)
{
return core_dispatch::points_begin<Geometry>::apply(geometry);
@@ -228,7 +228,7 @@ points_begin(Geometry& geometry)
// MK:: need to add doc here
template <typename Geometry>
typename point_iterator_type<Geometry>::type
inline typename point_iterator_type<Geometry>::type
points_end(Geometry& geometry)
{
return core_dispatch::points_end<Geometry>::apply(geometry);