mirror of https://github.com/CGAL/cgal
Remove warning
This commit is contained in:
parent
a4cf5e71f3
commit
035593162a
|
|
@ -74,22 +74,27 @@ private:
|
|||
typedef typename MapTriple::iterator MapTripleIt;
|
||||
|
||||
Vtriple facet(Vertex_handle vh1, Vertex_handle vh2, Vertex_handle vh3) {
|
||||
if (vh1 < vh2)
|
||||
if (vh2 < vh3)
|
||||
if (vh1 < vh2) {
|
||||
if (vh2 < vh3) {
|
||||
return Vtriple(vh1,vh2,vh3);
|
||||
else
|
||||
if (vh1 < vh3)
|
||||
} else {
|
||||
if (vh1 < vh3) {
|
||||
return Vtriple(vh1,vh3,vh2);
|
||||
else
|
||||
} else {
|
||||
return Vtriple(vh3,vh1,vh2);
|
||||
if (vh1 < vh3)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (vh1 < vh3) {
|
||||
return Vtriple(vh2,vh1,vh3);
|
||||
else
|
||||
if (vh2 < vh3)
|
||||
} else {
|
||||
if (vh2 < vh3) {
|
||||
return Vtriple(vh2,vh3,vh1);
|
||||
else
|
||||
} else {
|
||||
return Vtriple(vh3,vh2,vh1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
MapTriple facets;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue