Remove superfluous 'typename's

This commit is contained in:
Mael Rouxel-Labbé 2019-06-26 15:57:32 +02:00
parent 26f2efae06
commit c78f1ef812
1 changed files with 2 additions and 2 deletions

View File

@ -798,9 +798,9 @@ int main()
{
CGAL::Set_ieee_double_precision pfr;
Test< CGAL::Simple_cartesian<typename CGAL::internal::Exact_field_selector<void*>::Type > >().run();
Test< CGAL::Simple_cartesian<CGAL::internal::Exact_field_selector<void*>::Type > >().run();
Test< CGAL::Cartesian<double> >().run();
Test< CGAL::Homogeneous<typename CGAL::internal::Exact_field_selector<void*>::Type > >().run();
Test< CGAL::Homogeneous<CGAL::internal::Exact_field_selector<void*>::Type > >().run();
Test< CGAL::Exact_predicates_inexact_constructions_kernel >().run();
Test< CGAL::Exact_predicates_exact_constructions_kernel >().run();
}