mirror of https://github.com/CGAL/cgal
removed unused parameters
This commit is contained in:
parent
a7bf2b4523
commit
f0befd4fa4
|
|
@ -36,11 +36,11 @@ class Bounding_box_2 {
|
|||
|
||||
public:
|
||||
template<typename Vertex_iterator>
|
||||
Bounding_box_2(Vertex_iterator begin, Vertex_iterator end) {
|
||||
Bounding_box_2(Vertex_iterator , Vertex_iterator ) {
|
||||
CGAL_assertion_msg(false, "dummy interface");
|
||||
}
|
||||
|
||||
Point intersection_ray_bbox(const SPoint& p, const SDirection& d) {
|
||||
Point intersection_ray_bbox(const SPoint& , const SDirection& ) {
|
||||
CGAL_assertion_msg(false, "dummy interface");
|
||||
return Point();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -647,9 +647,9 @@ public:
|
|||
// assert(0); return h; // compiler warning
|
||||
}
|
||||
|
||||
bool ray_shoot_from_outer_facet(Segment& s, object_kind& current,
|
||||
Vertex_const_handle &v,
|
||||
Halfedge_const_handle& e,
|
||||
bool ray_shoot_from_outer_facet(Segment& , object_kind& ,
|
||||
Vertex_const_handle &,
|
||||
Halfedge_const_handle& ,
|
||||
const Tag_true& ) const {
|
||||
return false;
|
||||
}
|
||||
|
|
@ -838,8 +838,8 @@ public:
|
|||
// assert(0); return h; // compiler warning
|
||||
}
|
||||
|
||||
bool within_outer_cycle(Vertex_const_handle v,
|
||||
const Point& q, const Tag_true& ) const {
|
||||
bool within_outer_cycle(Vertex_const_handle ,
|
||||
const Point& , const Tag_true& ) const {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ public:
|
|||
: pm_(), pl_(0)
|
||||
{}
|
||||
|
||||
Nef_polyhedron_2_rep(const Self& R)
|
||||
Nef_polyhedron_2_rep(const Self& )
|
||||
: pm_(), pl_(0)
|
||||
{}
|
||||
|
||||
|
|
@ -258,7 +258,7 @@ protected:
|
|||
L.push_back(Extended_segment(EK.SE(),EK.NE()));
|
||||
}
|
||||
|
||||
void fill_with_frame_segs(ES_list& L, const Tag_false& ) const
|
||||
void fill_with_frame_segs(ES_list& , const Tag_false& ) const
|
||||
{}
|
||||
|
||||
void fill_with_frame_segs(ES_list& L) const
|
||||
|
|
|
|||
Loading…
Reference in New Issue