Bug 1411034 - Remove the const to fix the -Wignored-qualifiers warning r=mcmanus

MozReview-Commit-ID: AQ66p3bh9uX

--HG--
extra : rebase_source : 9196cfb334ec0cc303abcd1c04a2ddb4cd9cf15f
This commit is contained in:
Sylvestre Ledru 2017-10-23 22:51:00 +02:00
Родитель ae9444af4d
Коммит dc077d0eba
1 изменённых файлов: 1 добавлений и 1 удалений

2
netwerk/cache/nsDiskCacheEntry.h поставляемый
Просмотреть файл

@ -32,7 +32,7 @@ struct nsDiskCacheEntry {
mKeySize + mMetaDataSize;
}
char* Key() { return reinterpret_cast<char*const>(this) +
char* Key() { return reinterpret_cast<char*>(this) +
sizeof(nsDiskCacheEntry);
}