remove warning

This commit is contained in:
Olivier Devillers 2011-05-16 07:45:58 +00:00
parent d465be6a7e
commit defa7adb5b
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ int main ()
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;
}