Fix for the size_t warning

This commit is contained in:
Maxime Gimeno 2016-01-13 14:56:04 +01:00
parent bae76bc5d8
commit 5f0f0b7b45
1 changed files with 1 additions and 1 deletions

View File

@ -1184,7 +1184,7 @@ QString Scene_polyhedron_item::compute_stats(int type)
i = 0;
// initialization : keep the original ids in memory and set them to 0
std::vector<int> ids;
std::vector<size_t> ids;
for(Polyhedron::Halfedge_iterator it = polyhedron()->halfedges_begin(); it != polyhedron()->halfedges_end(); ++it)
{
ids.push_back(it->id());