From 911104a7e0fe4cc575e4584a95e080c9b27c45c7 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Mon, 14 Jun 2010 20:29:51 +0000 Subject: [PATCH] Remove extra typename (broken testsuite) after revision 56725: | ------------------------------------------------------------------------ | r56725 | afabri | 2010-06-14 09:08:25 +0200 (Mon, 14 Jun 2010) | 1 line | Changed paths: | M /trunk/Homogeneous_kernel/include/CGAL/Homogeneous/Homogeneous_base.h | M /trunk/Homogeneous_kernel/include/CGAL/Homogeneous/VectorH2.h | M /trunk/Homogeneous_kernel/include/CGAL/Homogeneous/VectorH3.h | | For VC-10 we have to change FT* to cpp0x<>::const_iterator | ------------------------------------------------------------------------ --- .../include/CGAL/Homogeneous/Homogeneous_base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Homogeneous_kernel/include/CGAL/Homogeneous/Homogeneous_base.h b/Homogeneous_kernel/include/CGAL/Homogeneous/Homogeneous_base.h index 68fe24ed468..b42e7949b8b 100644 --- a/Homogeneous_kernel/include/CGAL/Homogeneous/Homogeneous_base.h +++ b/Homogeneous_kernel/include/CGAL/Homogeneous/Homogeneous_base.h @@ -140,8 +140,8 @@ struct Homogeneous_base typedef CircleC3 Circle_3; typedef Aff_transformationH3 Aff_transformation_3; - typedef typename Cartesian_const_iterator_d::const_iterator> Cartesian_const_iterator_2; - typedef typename Cartesian_const_iterator_d::const_iterator> Cartesian_const_iterator_3; + typedef Cartesian_const_iterator_d::const_iterator> Cartesian_const_iterator_2; + typedef Cartesian_const_iterator_d::const_iterator> Cartesian_const_iterator_3; typedef FT_ Cartesian_coordinate_type; typedef const RT_& Homogeneous_coordinate_type;