diff --git a/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h b/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h index 49dfb2f0261..893c95202b2 100644 --- a/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h +++ b/Alpha_shapes_2/include/CGAL/Alpha_shape_2.h @@ -99,6 +99,7 @@ public: using Dt::OUTSIDE_CONVEX_HULL; using Dt::OUTSIDE_AFFINE_HULL; using Dt::dimension; + using Dt::is_infinite; // for backward compatibility typedef Finite_vertices_iterator Vertex_iterator; diff --git a/Triangulation_2/include/CGAL/Regular_triangulation_2.h b/Triangulation_2/include/CGAL/Regular_triangulation_2.h index fb3f120fedc..3c18ef2c350 100644 --- a/Triangulation_2/include/CGAL/Regular_triangulation_2.h +++ b/Triangulation_2/include/CGAL/Regular_triangulation_2.h @@ -93,6 +93,10 @@ public: using Base::EDGE; using Base::OUTSIDE_CONVEX_HULL; using Base::orientation; + using Base::locate; + using Base::incident_faces; + using Base::is_infinite; + using Base::degree; #endif private: @@ -1999,7 +2003,7 @@ stack_flip_dim1(Face_handle f, int i, Faces_around_stack &faces_around) n->neighbor(1-in)->set_neighbor(n->neighbor(1-in)->index(n), f); (f->vertex_list()).splice(f->vertex_list().begin(),n->vertex_list()); set_face(f->vertex_list(),f); - delete_face(n); + this->delete_face(n); hide_vertex(f,va); faces_around.push_front(f); return;