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 github-actions[bot] committed Feb 1, 2021
1 parent a0164e7 commit 81d60d4
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 81d60d4

Please sign in to comment.