removed unused parameters

This commit is contained in:
Andreas Fabri 2007-03-20 08:39:43 +00:00
parent fca1e7c262
commit 42f0da8ee0
1 changed files with 5 additions and 5 deletions

View File

@ -82,16 +82,16 @@ public:
return Self();
}
static Self construct_site_2(const Point_2& p1, const Point_2& p2,
const Point_2& q1, const Point_2& q2,
static Self construct_site_2(const Point_2& , const Point_2& ,
const Point_2& , const Point_2& ,
bool b) {
no_constructor_support();
return Self();
}
static Self construct_site_2(const Point_2& p1, const Point_2& p2,
const Point_2& q1, const Point_2& q2,
const Point_2& r1, const Point_2& r2) {
static Self construct_site_2(const Point_2& , const Point_2& ,
const Point_2& , const Point_2& ,
const Point_2& , const Point_2& ) {
no_constructor_support();
return Self();
}