Remove warning

This commit is contained in:
Nico Kruithof 2007-02-25 13:00:56 +00:00
parent a4cf5e71f3
commit 035593162a
1 changed files with 19 additions and 14 deletions

View File

@ -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;