Remove the use of typename outside template class

This commit is contained in:
Guillaume Damiand 2015-11-05 07:30:12 +01:00
parent e4515eb3be
commit 418c02b63e
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@
#include <vector>
typedef CGAL::Exact_predicates_inexact_constructions_kernel Local_kernel;
typedef typename Local_kernel::Point_3 Local_point;
typedef typename Local_kernel::Vector_3 Local_vector;
typedef Local_kernel::Point_3 Local_point;
typedef Local_kernel::Vector_3 Local_vector;
template<class LCC, int dim=LCC::ambient_dimension>
struct Geom_utils;