mirror of https://github.com/CGAL/cgal
warning test-suite
This commit is contained in:
parent
65a3595800
commit
c39e70305f
|
|
@ -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) )
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue