diff --git a/Circular_kernel_2/include/CGAL/IO/Dxf_reader_doubles.h b/Circular_kernel_2/include/CGAL/IO/Dxf_reader_doubles.h index 16f12d8cc63..86fba8a6a1c 100644 --- a/Circular_kernel_2/include/CGAL/IO/Dxf_reader_doubles.h +++ b/Circular_kernel_2/include/CGAL/IO/Dxf_reader_doubles.h @@ -43,12 +43,12 @@ class Dxf_reader_doubles { public: typedef double FT; - typedef boost::array Triple; - typedef Triple Point_2_and_bulge; - typedef Triple Circle_2; + typedef boost::array Triplet; + typedef Triplet Point_2_and_bulge; + typedef Triplet Circle_2; - typedef std::list Polygon; + typedef std::list Polygon; typedef std::list Polygons; typedef std::list Circles; diff --git a/Circular_kernel_2/include/CGAL/IO/Dxf_variant_reader.h b/Circular_kernel_2/include/CGAL/IO/Dxf_variant_reader.h index af9c3276c85..8a718f36833 100644 --- a/Circular_kernel_2/include/CGAL/IO/Dxf_variant_reader.h +++ b/Circular_kernel_2/include/CGAL/IO/Dxf_variant_reader.h @@ -44,7 +44,7 @@ template OutputIterator variant_load(std::istream& is, OutputIterator res) { - typedef boost::array Triple; + typedef boost::array Triplet; typedef typename CK::FT FT; typedef typename CK::Circular_arc_point_2 Circular_arc_point_2; typedef typename CK::Root_of_2 Root_of_2; @@ -53,9 +53,9 @@ template typedef typename CK::Point_2 Point_2; typedef typename CK::Circle_2 Circle_2; typedef typename boost::variant< Circular_arc_2, Line_arc_2 > Arc; - typedef std::list Polygon; + typedef std::list Polygon; typedef std::list Polygons; - typedef std::list Circles; + typedef std::list Circles; Polygons polygons; Circles circles;