Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix build warnings
  • Loading branch information
m-kuhn committed Sep 17, 2018
1 parent ed86d12 commit e157a7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -19,6 +19,7 @@

QList<QgsSingleGeometryCheckError *> QgsGeometrySelfContactCheck::processGeometry( const QgsGeometry &geometry, const QVariantMap &configuration ) const
{
Q_UNUSED( configuration )
QList<QgsSingleGeometryCheckError *> errors;
const QgsAbstractGeometry *geom = geometry.constGet();
for ( int iPart = 0, nParts = geom->partCount(); iPart < nParts; ++iPart )
Expand Down
Expand Up @@ -25,6 +25,7 @@

QList<QgsSingleGeometryCheckError *> QgsGeometryTypeCheck::processGeometry( const QgsGeometry &geometry, const QVariantMap &configuration ) const
{
Q_UNUSED( configuration )
QList<QgsSingleGeometryCheckError *> errors;
const QgsAbstractGeometry *geom = geometry.constGet();
QgsWkbTypes::Type type = QgsWkbTypes::flatType( geom->wkbType() );
Expand Down

0 comments on commit e157a7c

Please sign in to comment.