From 9b6af96536291a5ec4a2e15574e3885eb9c35ba6 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 12 Jan 2016 10:33:47 +0100 Subject: [PATCH] int -> std::size_t --- Polyhedron/demo/Polyhedron/Scene_polyhedron_item.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Scene_polyhedron_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polyhedron_item.cpp index 45050ac7e7b..7df09a1492f 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polyhedron_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polyhedron_item.cpp @@ -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 ids; + std::vector ids; for(Polyhedron::Halfedge_iterator it = polyhedron()->halfedges_begin(); it != polyhedron()->halfedges_end(); ++it) { ids.push_back(it->id());