Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix gcc8 ignore qualifier warning
  • Loading branch information
nyalldawson committed Apr 26, 2018
1 parent cf7cf82 commit 83cb3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/virtual/qgsvirtuallayerblob.cpp
Expand Up @@ -209,7 +209,7 @@ void copySpatialiteCollectionWkbToQgsGeometry( const char *iwkb, char *owkb, uin
QgsGeometry spatialiteBlobToQgsGeometry( const char *blob, size_t size )
{
const int header_size = SpatialiteBlobHeader::LENGTH;
const int wkb_size = static_cast< const int >( size - header_size );
const int wkb_size = static_cast< int >( size - header_size );
char *wkb = new char[wkb_size];

uint32_t osize = 0;
Expand Down

0 comments on commit 83cb3da

Please sign in to comment.