Fix warnings

This commit is contained in:
Mael Rouxel-Labbé 2019-07-20 17:33:23 +02:00
parent 259709babc
commit 10a07914be
2 changed files with 5 additions and 5 deletions

View File

@ -730,10 +730,10 @@ insert(const Point& p, Locate_type lt, Face_handle loc, int li)
{
if(test_dim_up(p))
{
Face_handle f = all_edges_begin()->first;
Vertex_handle v1 = f->vertex(0);
Vertex_handle v2 = f->vertex(1);
Vertex_handle v3 = f->neighbor(0)->vertex(1);
// Face_handle f = all_edges_begin()->first;
// Vertex_handle v1 = f->vertex(0);
// Vertex_handle v2 = f->vertex(1);
// Vertex_handle v3 = f->neighbor(0)->vertex(1);
return insert_outside_affine_hull_regular(p);
}
else

View File

@ -155,7 +155,7 @@ public:
double _radius;
typedef Projection_sphere_traits_3<R> Self;
typedef Delaunay_triangulation_sphere_traits_2<R> Base;
typedef typename Projected_point<R>::Projected_point Point_2;
typedef Projected_point<R> Point_2;
typedef typename R::Point_3 Base_point;
typedef Point_2 result_type;