Fix warning for empty body of while loop

This commit is contained in:
Sylvain Pion 2007-12-30 15:26:39 +00:00
parent a4307087db
commit b50e1cea03
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ bool Mesh_cutter::extend()
m_pBackbone->remove(pHalfedge);
// simplify current backbone
while(simplify());
while(simplify()) {}
return true;
}