mirror of https://github.com/CGAL/cgal
Fix warnings
This commit is contained in:
parent
edf8dbccc7
commit
ea5f79db80
|
|
@ -1138,8 +1138,6 @@ bool
|
|||
Protect_edges_sizing_field<C3T3, MD, Sf>::
|
||||
do_balls_intersect(const Vertex_handle& va, const Vertex_handle& vb) const
|
||||
{
|
||||
typedef typename Gt::Sphere_3 Sphere_3;
|
||||
|
||||
typename Gt::Construct_sphere_3 sphere =
|
||||
c3t3_.triangulation().geom_traits().construct_sphere_3_object();
|
||||
|
||||
|
|
|
|||
|
|
@ -98,11 +98,11 @@ public:
|
|||
Polyhedral_mesh_domain_with_features_3(const std::string& filename);
|
||||
|
||||
template <typename T1, typename T2>
|
||||
Polyhedral_mesh_domain_with_features_3(const T1& a, const T2& b) : Base(a, b) {};
|
||||
Polyhedral_mesh_domain_with_features_3(const T1& a, const T2& b) : Base(a, b) {}
|
||||
|
||||
template <typename T1, typename T2, typename T3>
|
||||
Polyhedral_mesh_domain_with_features_3(const T1& a, const T2& b, const T3& c)
|
||||
: Base(a, b, c) {};
|
||||
: Base(a, b, c) {}
|
||||
|
||||
/// Destructor
|
||||
~Polyhedral_mesh_domain_with_features_3() {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue