remove warning

This commit is contained in:
Sébastien Loriot 2014-11-14 11:55:26 +01:00
parent d8d2152513
commit 81611f015a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ int main( )
PS::simplify(polyline.begin(), polyline.end(), cost, Stop(0.5), std::back_inserter(result));
std::cout.precision(12);
for(int i=0; i < result.size(); ++i){
for(std::size_t i=0; i < result.size(); ++i){
std::cout << result[i] << std::endl;
}
return 0;