Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Dec 15, 2020
1 parent 221bd2f commit d6a43a5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/analysis/processing/qgsalgorithmexportmesh.cpp
Expand Up @@ -364,7 +364,7 @@ QVariantMap QgsExportMeshOnElement::processAlgorithm( const QVariantMap &paramet
{
geom.transform( mTransform );
}
catch ( QgsCsException &e )
catch ( QgsCsException & )
{
geom = meshElement( i );
feedback->reportError( QObject::tr( "Could not transform point to destination CRS" ) );
Expand Down Expand Up @@ -666,7 +666,7 @@ QVariantMap QgsExportMeshOnGridAlgorithm::processAlgorithm( const QVariantMap &p
{
geom.transform( mTransform );
}
catch ( QgsCsException &e )
catch ( QgsCsException & )
{
geom = QgsGeometry( point.clone() );
feedback->reportError( QObject::tr( "Could not transform point to destination CRS" ) );
Expand Down Expand Up @@ -1296,7 +1296,7 @@ QVariantMap QgsMeshExportCrossSection::processAlgorithm( const QVariantMap &para
{
line.transform( transform );
}
catch ( QgsCsException &e )
catch ( QgsCsException & )
{
line = feat.geometry();
feedback->reportError( QObject::tr( "Could not transform line to mesh CRS" ) );
Expand Down Expand Up @@ -1610,7 +1610,7 @@ QVariantMap QgsMeshExportTimeSeries::processAlgorithm( const QVariantMap &parame
{
geom.transform( transform );
}
catch ( QgsCsException &e )
catch ( QgsCsException & )
{
geom = feat.geometry();
feedback->reportError( QObject::tr( "Could not transform line to mesh CRS" ) );
Expand Down

0 comments on commit d6a43a5

Please sign in to comment.