We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6da550d commit 13a755bCopy full SHA for 13a755b
src/core/qgsgeometry.cpp
@@ -2508,7 +2508,7 @@ int QgsGeometry::addIsland(const QList<QgsPoint>& ring)
2508
2509
//create new multipolygon
2510
std::vector<GEOS_GEOM::Geometry*>* newMultiPolygonVector = new std::vector<GEOS_GEOM::Geometry*>();
2511
- for(int i = 0; i < thisMultiPolygon->getNumGeometries(); ++i)
+ for(unsigned int i = 0; i < thisMultiPolygon->getNumGeometries(); ++i)
2512
{
2513
const GEOS_GEOM::Geometry* polygonN = thisMultiPolygon->getGeometryN(i);
2514
0 commit comments