mirror of https://github.com/CGAL/cgal
int -> size_type/std::size_t
This commit is contained in:
parent
cea0252467
commit
c7feb6cc0c
|
|
@ -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.
|
// If the first and last point are equal the collinearity test some lines below will always be true.
|
||||||
Point_3_list points(first, beyond);
|
Point_3_list points(first, beyond);
|
||||||
unsigned int size = points.size();
|
std::size_t size = points.size();
|
||||||
while((size > 1) && (points.front() == points.back())){
|
while((size > 1) && (points.front() == points.back())){
|
||||||
points.pop_back();
|
points.pop_back();
|
||||||
--size;
|
--size;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue