mirror of https://github.com/CGAL/cgal
Forward the construction with three arguments to the base
This commit is contained in:
parent
0cd47271d8
commit
d2a9ca727b
|
|
@ -100,6 +100,10 @@ public:
|
|||
template <typename T1, typename T2>
|
||||
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) {};
|
||||
|
||||
/// Destructor
|
||||
~Polyhedral_mesh_domain_with_features_3() {}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue