From 3f0deccceae41dd32f9cf68024862e4e0c016dc5 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 13 Sep 2006 16:32:48 +0000 Subject: [PATCH] Polygon -> Polygon_2 --- Matrix_search/test/Matrix_search/extremal_polygon_2_test.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Matrix_search/test/Matrix_search/extremal_polygon_2_test.C b/Matrix_search/test/Matrix_search/extremal_polygon_2_test.C index f40a9a5e9d5..571334cba18 100644 --- a/Matrix_search/test/Matrix_search/extremal_polygon_2_test.C +++ b/Matrix_search/test/Matrix_search/extremal_polygon_2_test.C @@ -31,7 +31,7 @@ struct Kernel : public CGAL::Cartesian {}; typedef Kernel::Point_2 Point; typedef std::vector Cont; -typedef CGAL::Polygon_2 Polygon; +typedef CGAL::Polygon_2 Polygon_2; typedef CGAL::Random_points_in_square_2 Generator; template < class RandomAccessIC, @@ -124,7 +124,7 @@ int main() { int j; for (int n = 0; n < 4; ++n) { - Polygon p; + Polygon_2 p; CGAL::random_convex_set_2(number_of_points[n], std::back_inserter(p), Generator(1));