Navigation Menu

Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 15, 2021
1 parent f14c7a9 commit 2366138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/dwg/qgsdwgimporter.cpp
Expand Up @@ -2632,7 +2632,7 @@ void QgsDwgImporter::addHatch( const DRW_Hatch *pdata )

QgsCurvePolygon p;

if ( data.looplist.size() != data.loopsnum )
if ( static_cast< int >( data.looplist.size() ) != data.loopsnum )
{
LOG( tr( "0x%1: %2 instead of %3 loops found" )
.arg( data.handle, 0, 16 )
Expand Down

0 comments on commit 2366138

Please sign in to comment.