removed harmless warnings

This commit is contained in:
Paolo Cignoni 2010-03-18 14:20:53 +00:00
parent 3b770c935a
commit a201459a30
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static int BestMatchingNormal(const Point3x &n, std::vector<Point3x> &nv)
ret=ni-nv.begin();
}
}
assert(ret>=0 && ret <nv.size());
assert(ret>=0 && ret <int(nv.size()));
return ret;
}