We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 269bf02 commit b2df392Copy full SHA for b2df392
src/providers/wcs/qgswcsprovider.cpp
@@ -72,7 +72,7 @@ QgsWcsProvider::QgsWcsProvider( const QString &uri, const ProviderOptions &optio
72
QgsDebugMsg( "constructing with uri '" + mHttpUri + "'." );
73
74
mValid = false;
75
- mCachedMemFilename = QStringLiteral( "/vsimem/qgis/wcs/%0.dat" ).arg( ( qlonglong )this );
+ mCachedMemFilename = QStringLiteral( "/vsimem/qgis/wcs/%0.dat" ).arg( reinterpret_cast<std::uintptr_t>( this ) );
76
77
if ( !parseUri( uri ) ) return;
78
0 commit comments