Skip to content

Commit 83cb3da

Browse files
committedApr 26, 2018
Fix gcc8 ignore qualifier warning
1 parent cf7cf82 commit 83cb3da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/virtual/qgsvirtuallayerblob.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ void copySpatialiteCollectionWkbToQgsGeometry( const char *iwkb, char *owkb, uin
209209
QgsGeometry spatialiteBlobToQgsGeometry( const char *blob, size_t size )
210210
{
211211
const int header_size = SpatialiteBlobHeader::LENGTH;
212-
const int wkb_size = static_cast< const int >( size - header_size );
212+
const int wkb_size = static_cast< int >( size - header_size );
213213
char *wkb = new char[wkb_size];
214214

215215
uint32_t osize = 0;

0 commit comments

Comments
 (0)
Please sign in to comment.