Merge pull request #5032 from lrineau/Classification-fix_warning-GF

Fix a warning
This commit is contained in:
Sebastien Loriot 2020-10-02 15:09:47 +02:00 committed by GitHub
commit dadf977798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -669,7 +669,7 @@ int main (int argc, char** argv)
}
std::size_t nb_vertices
= std::accumulate (polylines.begin(), polylines.end(), 0,
= std::accumulate (polylines.begin(), polylines.end(), 0u,
[](std::size_t size, const std::vector<Point_3>& poly) -> std::size_t
{ return size + poly.size(); });