Fix some warnings about misleading indentation

This commit is contained in:
Johan Manuel
2016-07-26 15:04:54 +02:00
parent 046f94d3ac
commit 67b29e3b9e
4 changed files with 17 additions and 13 deletions

View File

@ -157,7 +157,10 @@ bool Triangulate::triangulate(const Vector<Vector2> &contour,Vector<int> &result
m++;
/* remove v from remaining polygon */
for(s=v,t=v+1;t<nv;s++,t++) V[s] = V[t]; nv--;
for(s=v,t=v+1;t<nv;s++,t++)
V[s] = V[t];
nv--;
/* resest error detection counter */
count = 2*nv;