added a missing std::
This commit is contained in:
parent
29fdad2622
commit
add25e7bf0
|
@ -792,7 +792,7 @@ class QualityEdgePredicate
|
||||||
{
|
{
|
||||||
ScalarType q0=ep.f->V0(ep.z)->Q()-thr;
|
ScalarType q0=ep.f->V0(ep.z)->Q()-thr;
|
||||||
ScalarType q1=ep.f->V1(ep.z)->Q()-thr;
|
ScalarType q1=ep.f->V1(ep.z)->Q()-thr;
|
||||||
if(q0>q1) swap(q0,q1);
|
if(q0>q1) std::swap(q0,q1);
|
||||||
if ( q0*q1 > 0) return false;
|
if ( q0*q1 > 0) return false;
|
||||||
// now a small check to be sure that we do not make too thin crossing.
|
// now a small check to be sure that we do not make too thin crossing.
|
||||||
double pp= q0/(q0-q1);
|
double pp= q0/(q0-q1);
|
||||||
|
|
Loading…
Reference in New Issue