Skip to content

Commit

Permalink
Remove compiler warnings
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6980 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Jun 4, 2007
1 parent 6da550d commit 13a755b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsgeometry.cpp
Expand Up @@ -2508,7 +2508,7 @@ int QgsGeometry::addIsland(const QList<QgsPoint>& ring)

//create new multipolygon
std::vector<GEOS_GEOM::Geometry*>* newMultiPolygonVector = new std::vector<GEOS_GEOM::Geometry*>();
for(int i = 0; i < thisMultiPolygon->getNumGeometries(); ++i)
for(unsigned int i = 0; i < thisMultiPolygon->getNumGeometries(); ++i)
{
const GEOS_GEOM::Geometry* polygonN = thisMultiPolygon->getGeometryN(i);

Expand Down

0 comments on commit 13a755b

Please sign in to comment.