Fix compilation error: spurious "typename"

This commit is contained in:
Laurent Rineau 2014-12-03 16:10:21 +01:00
parent d20eb45039
commit f8911c20dd
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ namespace CGAL {
class Search_traits_2 {
public:
typedef typename Dimension_tag<2> Dimension;
typedef Dimension_tag<2> Dimension;
typedef typename K::Point_2 Point_d;
typedef typename K::Iso_rectangle_2 Iso_box_d;
typedef typename K::Circle_2 Sphere_d;

View File

@ -32,7 +32,7 @@ namespace CGAL {
public:
typedef typename Dimension_tag<3> Dimension;
typedef Dimension_tag<3> Dimension;
typedef typename K::Cartesian_const_iterator_3 Cartesian_const_iterator_d;
typedef typename K::Construct_cartesian_const_iterator_3 Construct_cartesian_const_iterator_d;
typedef typename K::Point_3 Point_d;