From d2a9ca727baff3d06a4ac40865d2ba1cd317abc1 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 27 Nov 2012 16:09:07 +0100 Subject: [PATCH] Forward the construction with three arguments to the base --- Mesh_3/include/CGAL/Polyhedral_mesh_domain_with_features_3.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Mesh_3/include/CGAL/Polyhedral_mesh_domain_with_features_3.h b/Mesh_3/include/CGAL/Polyhedral_mesh_domain_with_features_3.h index 6482c1c6aa3..9be8fc30bc8 100644 --- a/Mesh_3/include/CGAL/Polyhedral_mesh_domain_with_features_3.h +++ b/Mesh_3/include/CGAL/Polyhedral_mesh_domain_with_features_3.h @@ -100,6 +100,10 @@ public: template Polyhedral_mesh_domain_with_features_3(const T1& a, const T2& b) : Base(a, b) {}; + template + Polyhedral_mesh_domain_with_features_3(const T1& a, const T2& b, const T3& c) + : Base(a, b, c) {}; + /// Destructor ~Polyhedral_mesh_domain_with_features_3() {}