Skip to content

Commit

Permalink
Try to fix #41209
Browse files Browse the repository at this point in the history
  • Loading branch information
rldhont authored and nyalldawson committed Feb 2, 2021
1 parent d2216c3 commit 6d3b51c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/providers/gdal/qgsgdalprovider.cpp
Expand Up @@ -2360,7 +2360,8 @@ QString QgsGdalProviderMetadata::encodeUri( const QVariantMap &parts )

QgsGdalProvider *QgsGdalProviderMetadata::createProvider( const QString &uri, const QgsDataProvider::ProviderOptions &options, QgsDataProvider::ReadFlags flags )
{
return new QgsGdalProvider( uri, options, flags );
Q_UNUSED( flags );
return new QgsGdalProvider( uri, options );
}

/**
Expand Down

0 comments on commit 6d3b51c

Please sign in to comment.