Skip to content

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
(cherry picked from commit a62fc8b)
  • Loading branch information
elpaso authored and nyalldawson committed Apr 17, 2021
1 parent a53f669 commit 9a7a0a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -3492,7 +3492,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 9a7a0a7

Please sign in to comment.