Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
indentation
  • Loading branch information
elpaso committed Mar 9, 2021
1 parent 2adf89c commit a62fc8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -3493,7 +3493,7 @@ QgsRasterIdentifyResult QgsWmsProvider::identify( const QgsPointXY &point, QgsRa
// Try to parse and set feature id if matches "<some string>.<integer>"
if ( f.value( QLatin1String( "id" ) ).isString() )
{
const thread_local QRegularExpression re{ R"raw(\.(\d+)$)raw" };
const thread_local QRegularExpression re{ R"raw(\.(\d+)$)raw" };
const QString idVal { f.value( QLatin1String( "id" ) ).toString() };
const QRegularExpressionMatch match { re.match( idVal ) };
if ( match.hasMatch() )
Expand Down

0 comments on commit a62fc8b

Please sign in to comment.