mirror of https://github.com/CGAL/cgal
Fix the typedef for the Bare_point
This commit is contained in:
parent
d35c6c913d
commit
b978fa8fdd
|
|
@ -131,7 +131,12 @@ namespace CGAL {
|
|||
typedef typename Tr_Base::All_cells_iterator All_cells_iterator;
|
||||
|
||||
typedef typename Gt::Weighted_point_3 Weighted_point;
|
||||
typedef typename Gt::Point_3 Bare_point;
|
||||
typedef typename boost::mpl::eval_if_c<
|
||||
internal::Has_nested_type_Bare_point<Gt>::value,
|
||||
typename internal::Bare_point_type<Gt>,
|
||||
boost::mpl::identity<typename Gt::Point_3>
|
||||
>::type Bare_point;
|
||||
|
||||
typedef typename Gt::Segment_3 Segment;
|
||||
typedef typename Gt::Triangle_3 Triangle;
|
||||
typedef typename Gt::Tetrahedron_3 Tetrahedron;
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@
|
|||
// : Mariette Yvinec (Mariette.Yvinec@sophia.inria.fr)
|
||||
|
||||
#include <CGAL/Regular_triangulation_3.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#include <list>
|
||||
|
|
|
|||
Loading…
Reference in New Issue