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 1, 2021
1 parent b936829 commit 723a90c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/providers/gdal/qgsgdalprovider.cpp
Expand Up @@ -2399,7 +2399,8 @@ bool QgsGdalProviderMetadata::uriIsBlocklisted( const QString &uri ) const

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 723a90c

Please sign in to comment.