removed a warning in examples

This commit is contained in:
Pierre Alliez 2006-04-07 12:46:19 +00:00
parent 5b2d379a39
commit d24e9ee884
1 changed files with 2 additions and 3 deletions

View File

@ -16,8 +16,7 @@ int main()
points.push_back(Point_2(3.0,0.0)); points.push_back(Point_2(3.0,0.0));
Line_2 line; Line_2 line;
FT quality = linear_least_squares_fitting_2(points.begin(), linear_least_squares_fitting_2(points.begin(),points.end(),line);
points.end(),
line);
return 0; return 0;
} }