mirror of https://github.com/CGAL/cgal
Fix compilation error: spurious "typename"
This commit is contained in:
parent
d20eb45039
commit
f8911c20dd
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue