warning test-suite

This commit is contained in:
Olivier Devillers 2011-05-10 07:36:24 +00:00
parent 65a3595800
commit c39e70305f
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ namespace internal {
int axe;
bool orient;
Hilbert_cmp_d (int a, bool o, const K &_k = K())
: axe(a), orient(o), k(_k) {}
: axe(a), k(_k), orient(o) {}
bool operator() (const Point &p, const Point &q) const
{
return (orient ? (k.less_coordinate_d_object() (q,p,axe) )

View File

@ -40,7 +40,7 @@ namespace internal {
bool orient;
double value;
Fixed_hilbert_cmp_d (int a, bool o, double v, const K &_k = K())
: axe(a), orient(o), k(_k), value(v) {}
: axe(a), k(_k), orient(o), value(v) {}
bool operator() (const Point &p) const
{
return (orient