mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-28 00:17:30 -05:00
correctly cast pointer
This commit is contained in:
parent
269bf02da8
commit
b2df392d3c
@ -72,7 +72,7 @@ QgsWcsProvider::QgsWcsProvider( const QString &uri, const ProviderOptions &optio
|
||||
QgsDebugMsg( "constructing with uri '" + mHttpUri + "'." );
|
||||
|
||||
mValid = false;
|
||||
mCachedMemFilename = QStringLiteral( "/vsimem/qgis/wcs/%0.dat" ).arg( ( qlonglong )this );
|
||||
mCachedMemFilename = QStringLiteral( "/vsimem/qgis/wcs/%0.dat" ).arg( reinterpret_cast<std::uintptr_t>( this ) );
|
||||
|
||||
if ( !parseUri( uri ) ) return;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user