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
  | ------------------------------------------------------------------------
This commit is contained in:
Laurent Rineau 2010-06-14 20:29:51 +00:00
parent af059deb4c
commit 911104a7e0
1 changed files with 2 additions and 2 deletions

View File

@ -140,8 +140,8 @@ struct Homogeneous_base
typedef CircleC3<Kernel> Circle_3;
typedef Aff_transformationH3<Kernel> Aff_transformation_3;
typedef typename Cartesian_const_iterator_d<typename cpp0x::array<RT, 3>::const_iterator> Cartesian_const_iterator_2;
typedef typename Cartesian_const_iterator_d<typename cpp0x::array<RT, 4>::const_iterator> Cartesian_const_iterator_3;
typedef Cartesian_const_iterator_d<typename cpp0x::array<RT, 3>::const_iterator> Cartesian_const_iterator_2;
typedef Cartesian_const_iterator_d<typename cpp0x::array<RT, 4>::const_iterator> Cartesian_const_iterator_3;
typedef FT_ Cartesian_coordinate_type;
typedef const RT_& Homogeneous_coordinate_type;