Forward the construction with three arguments to the base

This commit is contained in:
Laurent Rineau 2012-11-27 16:09:07 +01:00
parent 0cd47271d8
commit d2a9ca727b
1 changed files with 4 additions and 0 deletions

View File

@ -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() {}