From 7bf9f637e7ca49bf5dde97697c895b61ff67b6cd Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 30 Dec 2018 12:51:13 +0100 Subject: [PATCH] Fix some warnings --- src/ifcgeom/IfcGeomFunctions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeom/IfcGeomFunctions.cpp b/src/ifcgeom/IfcGeomFunctions.cpp index 840aa52102..e7698fabdd 100644 --- a/src/ifcgeom/IfcGeomFunctions.cpp +++ b/src/ifcgeom/IfcGeomFunctions.cpp @@ -3795,7 +3795,7 @@ IfcGeom::Kernel::faceset_helper::faceset_helper(Kernel* kernel, const IfcSchema: std::map, int> edge_use; - for (int i = 0; i < pnts.size(); ++i) { + for (int i = 0; i < (int) pnts.size(); ++i) { if (pnts[i]) { std::set vs; find_neighbours(tree, pnts, vs, i, eps_);