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));