Skip to content

Commit

Permalink
qgsvectorfilewriter.cpp: make it obvious we don't care about toInt() …
Browse files Browse the repository at this point in the history
…return value
  • Loading branch information
rouault committed Jun 2, 2020
1 parent a4f38a0 commit 46d1e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorfilewriter.cpp
Expand Up @@ -3480,7 +3480,7 @@ QString QgsVectorFileWriter::convertCodecNameForEncodingOption( const QString &c
{
QString c = re.cap( 2 ).remove( '-' );
bool isNumber;
c.toInt( &isNumber );
( void ) c.toInt( &isNumber );
if ( isNumber )
return c;
}
Expand Down

0 comments on commit 46d1e5c

Please sign in to comment.