From 64181a9d1c1dbaa05ceada9b6a0e5b283f59af2a Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 1 Oct 2008 19:40:41 +0000 Subject: [PATCH] No need to use the CGAL vector --- .../include/CGAL/Partition_2/Partitioned_polygon_2.h | 6 +++--- .../test/Partition_2/approx_convex_partition_2_test_C.cpp | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Partition_2/include/CGAL/Partition_2/Partitioned_polygon_2.h b/Partition_2/include/CGAL/Partition_2/Partitioned_polygon_2.h index 7a4fd63023f..09f468fa4dd 100644 --- a/Partition_2/include/CGAL/Partition_2/Partitioned_polygon_2.h +++ b/Partition_2/include/CGAL/Partition_2/Partitioned_polygon_2.h @@ -21,7 +21,7 @@ #define CGAL_PARTITIONED_POLYGON_2_H #include -#include +#include #include namespace CGAL { @@ -95,12 +95,12 @@ class Partition_vertex; template class Partitioned_polygon_2 : - public CGALi::vector< Partition_vertex< Traits_ > > + public std::vector< Partition_vertex< Traits_ > > { public: typedef Traits_ Traits; typedef Partition_vertex Vertex; - typedef typename CGALi::vector< Vertex >::iterator Iterator; + typedef typename std::vector< Vertex >::iterator Iterator; typedef Circulator_from_iterator Circulator; typedef typename Traits::Polygon_2 Subpolygon_2; typedef typename Traits::Point_2 Point_2; diff --git a/Partition_2/test/Partition_2/approx_convex_partition_2_test_C.cpp b/Partition_2/test/Partition_2/approx_convex_partition_2_test_C.cpp index 20b0d94f695..08c57d67600 100644 --- a/Partition_2/test/Partition_2/approx_convex_partition_2_test_C.cpp +++ b/Partition_2/test/Partition_2/approx_convex_partition_2_test_C.cpp @@ -1,3 +1,5 @@ + + // ============================================================================ // // Copyright (c) 2000 The CGAL Consortium