Skip to content

Commit

Permalink
Fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 16, 2018
1 parent 3949802 commit 623574a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/geometry/qgsgeos.cpp
Expand Up @@ -31,7 +31,7 @@ email : marco.hugentobler at sourcepole dot com
#define DEFAULT_QUADRANT_SEGMENTS 8

#define CATCH_GEOS(r) \
catch (GEOSException &e) \
catch (GEOSException &) \
{ \
return r; \
}
Expand Down Expand Up @@ -2357,7 +2357,7 @@ geos::unique_ptr QgsGeos::reshapeLine( const GEOSGeometry *line, const GEOSGeome
}
}
}
catch ( GEOSException &e )
catch ( GEOSException & )
{
atLeastTwoIntersections = false;
}
Expand Down Expand Up @@ -2575,7 +2575,7 @@ geos::unique_ptr QgsGeos::reshapePolygon( const GEOSGeometry *polygon, const GEO
}
}
}
catch ( GEOSException &e )
catch ( GEOSException & )
{
nIntersections = 0;
}
Expand Down

0 comments on commit 623574a

Please sign in to comment.