removed warning int -> size_t

This commit is contained in:
granzuglia 2016-05-06 02:13:27 +00:00
parent 361c3a6a1d
commit ff360e8cbb
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ protected:
return inSphVec.size();
}
int RemoveInSphere(const Point3<ScalarType> &p, const ScalarType radius)
size_t RemoveInSphere(const Point3<ScalarType> &p, const ScalarType radius)
{
std::vector<HashIterator> inSphVec;
CountInSphere(p,radius,inSphVec);