Add operator() with 4 arguments in Static_filters/Angle_3

Approved by the release manager
This commit is contained in:
Andreas Fabri 2014-05-26 14:02:44 +02:00
parent 8deba535b6
commit 6fd424d94f
1 changed files with 7 additions and 0 deletions

View File

@ -59,6 +59,13 @@ public:
{
return Base()(t1,t2);
}
template <typename T1, typename T2, typename T3, typename T4>
result_type
operator()(const T1& t1, const T2& t2, const T3& t3, const T4& t4) const
{
return Base()(t1,t2,t3,t4);
}
#endif // CGAL_CFG_MATCHING_BUG_6