add missing Using detected by intel compiler

This commit is contained in:
Sébastien Loriot 2010-04-26 08:20:17 +00:00
parent fe96061a32
commit ec840a9cbf
2 changed files with 6 additions and 1 deletions

View File

@ -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;

View File

@ -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;