mirror of https://github.com/CGAL/cgal
removed unused parameters
This commit is contained in:
parent
aed4602898
commit
37f581bd75
|
|
@ -231,7 +231,7 @@ public:
|
||||||
construction means cloning an isomorphic structure and is thus an
|
construction means cloning an isomorphic structure and is thus an
|
||||||
expensive operation.}*/
|
expensive operation.}*/
|
||||||
|
|
||||||
Sphere_map(bool b=false) : boundary_item_(boost::none),
|
Sphere_map(bool = false) : boundary_item_(boost::none),
|
||||||
svertices_(), sedges_(), sfaces_(), shalfloop_() {}
|
svertices_(), sedges_(), sfaces_(), shalfloop_() {}
|
||||||
|
|
||||||
~Sphere_map() { clear(); }
|
~Sphere_map() { clear(); }
|
||||||
|
|
@ -368,7 +368,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
SVertex_alloc vertex_allocator;
|
SVertex_alloc vertex_allocator;
|
||||||
SVertex* get_vertex_node( const SVertex& t) {
|
SVertex* get_vertex_node( const SVertex& ) {
|
||||||
SVertex* p = vertex_allocator.allocate(1);
|
SVertex* p = vertex_allocator.allocate(1);
|
||||||
vertex_allocator.construct( p, SVertex());
|
vertex_allocator.construct( p, SVertex());
|
||||||
return p;
|
return p;
|
||||||
|
|
@ -379,7 +379,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
SHalfedge_alloc halfedge_allocator;
|
SHalfedge_alloc halfedge_allocator;
|
||||||
SHalfedge* get_halfedge_node( const SHalfedge& t) {
|
SHalfedge* get_halfedge_node( const SHalfedge& ) {
|
||||||
SHalfedge* p = halfedge_allocator.allocate(1);
|
SHalfedge* p = halfedge_allocator.allocate(1);
|
||||||
halfedge_allocator.construct( p, SHalfedge());
|
halfedge_allocator.construct( p, SHalfedge());
|
||||||
return p;
|
return p;
|
||||||
|
|
@ -390,7 +390,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
SFace_alloc face_allocator;
|
SFace_alloc face_allocator;
|
||||||
SFace* get_face_node( const SFace& t) {
|
SFace* get_face_node( const SFace& ) {
|
||||||
SFace* p = face_allocator.allocate(1);
|
SFace* p = face_allocator.allocate(1);
|
||||||
face_allocator.construct( p, SFace());
|
face_allocator.construct( p, SFace());
|
||||||
return p;
|
return p;
|
||||||
|
|
|
||||||
|
|
@ -76,7 +76,7 @@ class Nef_polyhedron_S2_rep {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Nef_polyhedron_S2_rep() : sm_() {}
|
Nef_polyhedron_S2_rep() : sm_() {}
|
||||||
Nef_polyhedron_S2_rep(const Self& R) : sm_() {}
|
Nef_polyhedron_S2_rep(const Self&) : sm_() {}
|
||||||
~Nef_polyhedron_S2_rep() { sm_.clear(); }
|
~Nef_polyhedron_S2_rep() { sm_.clear(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue