Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix clang-tidy int to bool conversion warning
  • Loading branch information
nyalldawson committed Sep 11, 2017
1 parent 6ca50a0 commit 68ad9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/geometry/qgsgeos.cpp
Expand Up @@ -693,7 +693,7 @@ bool QgsGeos::topologicalTestPointsSplit( const GEOSGeometry *splitLine, QgsPoin
}
GEOSGeom_destroy_r( geosinit.ctxt, intersectionGeom );
}
CATCH_GEOS_WITH_ERRMSG( 1 )
CATCH_GEOS_WITH_ERRMSG( true )

return true;
}
Expand Down

0 comments on commit 68ad9fe

Please sign in to comment.