remove typename that causes a compilation error on msvc

"C2899: typename cannot be used outside a template declaration"
This commit is contained in:
Jane Tournois 2017-01-12 15:24:03 +01:00
parent 3c9425c2da
commit d08e530380
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ private:
tree.accelerate_distance_queries();
tree.build();
typename Traits::Point_3 hint = m.vertices_begin()->point();
Traits::Point_3 hint = m.vertices_begin()->point();
#ifndef CGAL_LINKED_WITH_TBB
double hdist = 0;