int -> size_type/std::size_t

This commit is contained in:
Andreas Fabri 2010-06-21 16:47:25 +00:00
parent cea0252467
commit c7feb6cc0c
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ convex_hull_3(InputIterator first, InputIterator beyond,
// If the first and last point are equal the collinearity test some lines below will always be true.
Point_3_list points(first, beyond);
unsigned int size = points.size();
std::size_t size = points.size();
while((size > 1) && (points.front() == points.back())){
points.pop_back();
--size;