diff options
author | trav90 <travawine@protonmail.ch> | 2018-08-10 15:04:21 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-08-10 15:04:21 -0500 |
commit | d630f1219672d55552d68e26a9960cdd83ae9f63 (patch) | |
tree | 4f40e66e7ab2f26a45ab18955a36f2a338c25fae /xpcom | |
parent | a5964da0477b25f844e7173d18b47ac9ae6badcb (diff) | |
download | aura-central-d630f1219672d55552d68e26a9960cdd83ae9f63.tar.gz |
Remove the const to fix the -Wignored-qualifiers warning with GCC 8
Diffstat (limited to 'xpcom')
-rw-r--r-- | xpcom/glue/nsTHashtable.h | 4 | ||||
-rw-r--r-- | xpcom/string/nsReadableUtilsImpl.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/xpcom/glue/nsTHashtable.h b/xpcom/glue/nsTHashtable.h index 705b0294e..830f52e88 100644 --- a/xpcom/glue/nsTHashtable.h +++ b/xpcom/glue/nsTHashtable.h @@ -372,7 +372,7 @@ template<class EntryType> PLDHashNumber nsTHashtable<EntryType>::s_HashKey(const void* aKey) { - return EntryType::HashKey(static_cast<const KeyTypePointer>(aKey)); + return EntryType::HashKey(static_cast<KeyTypePointer>(aKey)); } template<class EntryType> @@ -381,7 +381,7 @@ nsTHashtable<EntryType>::s_MatchEntry(const PLDHashEntryHdr* aEntry, const void* aKey) { return ((const EntryType*)aEntry)->KeyEquals( - static_cast<const KeyTypePointer>(aKey)); + static_cast<KeyTypePointer>(aKey)); } template<class EntryType> diff --git a/xpcom/string/nsReadableUtilsImpl.h b/xpcom/string/nsReadableUtilsImpl.h index ff1497b51..94f18dffc 100644 --- a/xpcom/string/nsReadableUtilsImpl.h +++ b/xpcom/string/nsReadableUtilsImpl.h @@ -18,7 +18,7 @@ inline bool IsASCII(char16_t aChar) { inline const char16_t* aligned(const char16_t* aPtr, const uintptr_t aMask) { return reinterpret_cast<const char16_t*>( - reinterpret_cast<const uintptr_t>(aPtr) & ~aMask); + reinterpret_cast<uintptr_t>(aPtr) & ~aMask); } /** |