Fix warnings

This commit is contained in:
Andreas Fabri 2022-04-13 11:53:02 +01:00
parent 0bbb92aac7
commit 68d896b496
2 changed files with 2 additions and 2 deletions

View File

@ -193,8 +193,8 @@ private:
Node_handle right_node;
Plane_3 splitting_plane;
Vertex_list vertex_list;
Halffacet_list facet_list;
Halfedge_list edge_list;
Halffacet_list facet_list;
};
typedef boost::container::deque<Node> Node_range;

View File

@ -328,8 +328,8 @@ public:
case is_vertex_: return make_object(v_res);
case is_edge_: return make_object(e_res);
case is_facet_: return make_object(f_res);
case is_none_ : return Object_handle();;
}
return Object_handle();
}
virtual Object_handle locate( const Point_3& p) const {