summaryrefslogtreecommitdiffstats
path: root/netwerk
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-08-13 18:52:43 +0200
committerGitHub <noreply@github.com>2018-08-13 18:52:43 +0200
commitba2882cf71d06e121b7a023f954388768a5964dd (patch)
tree70f1e0754b0bd39151721c248c3d2328f53ae71d /netwerk
parent727eefc7c4f2b9197dc26d298340a12ca4feae36 (diff)
parent9b48c3fa58c4926341e1668fdfec131ada3147a1 (diff)
downloadUXP-ba2882cf71d06e121b7a023f954388768a5964dd.tar
UXP-ba2882cf71d06e121b7a023f954388768a5964dd.tar.gz
UXP-ba2882cf71d06e121b7a023f954388768a5964dd.tar.lz
UXP-ba2882cf71d06e121b7a023f954388768a5964dd.tar.xz
UXP-ba2882cf71d06e121b7a023f954388768a5964dd.zip
Merge pull request #706 from trav90/gcc8
Fix/silence some warnings with GCC 8
Diffstat (limited to 'netwerk')
-rw-r--r--netwerk/cache/nsDiskCacheEntry.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/netwerk/cache/nsDiskCacheEntry.h b/netwerk/cache/nsDiskCacheEntry.h
index 3bec33053..506886cb7 100644
--- a/netwerk/cache/nsDiskCacheEntry.h
+++ b/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);
}