From fbbefdde2a3fa745d6cd24d8ecacaf961c09334c Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Wed, 8 Jul 2009 16:04:50 +0000 Subject: [PATCH] Fixed proper specialization of Polygon_2 with a non-default container (used by the Polygon demo) --- .../include/CGAL/create_straight_skeleton_2.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Straight_skeleton_2/include/CGAL/create_straight_skeleton_2.h b/Straight_skeleton_2/include/CGAL/create_straight_skeleton_2.h index 15c8b2c93ba..5f222d87824 100644 --- a/Straight_skeleton_2/include/CGAL/create_straight_skeleton_2.h +++ b/Straight_skeleton_2/include/CGAL/create_straight_skeleton_2.h @@ -35,12 +35,12 @@ template inline typename Poly::const_iterator vertices_end ( Poly const& aPoly ) { return aPoly.end() ; } -template -inline typename Polygon_2::Vertex_const_iterator vertices_begin ( Polygon_2 const& aPoly ) +template +inline typename Polygon_2::Vertex_const_iterator vertices_begin ( Polygon_2 const& aPoly ) { return aPoly.vertices_begin() ; } -template -inline typename Polygon_2::Vertex_const_iterator vertices_end( Polygon_2 const& aPoly ) +template +inline typename Polygon_2::Vertex_const_iterator vertices_end( Polygon_2 const& aPoly ) { return aPoly.vertices_end() ; } template