mirror of https://github.com/CGAL/cgal
remove warning
This commit is contained in:
parent
d465be6a7e
commit
defa7adb5b
|
|
@ -17,6 +17,6 @@ int main ()
|
||||||
|
|
||||||
CGAL::hilbert_sort (v.begin(), v.end()); // sort
|
CGAL::hilbert_sort (v.begin(), v.end()); // sort
|
||||||
|
|
||||||
for(int i=0; i<size; ++i)std::cout<<v[i]<<std::endl;//output
|
for(std::size_t i=0; i<size; ++i)std::cout<<v[i]<<std::endl;//output
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue