diff options
author | trav90 <travawine@protonmail.ch> | 2018-08-10 15:21:45 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-08-10 15:21:45 -0500 |
commit | 9b48c3fa58c4926341e1668fdfec131ada3147a1 (patch) | |
tree | 708b9afdc8fd84dfeafb22327732abeda61a4087 /toolkit/components | |
parent | f7219526788d3170a5d8de33f7adf13afe38d581 (diff) | |
download | UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar.gz UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar.lz UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.tar.xz UXP-9b48c3fa58c4926341e1668fdfec131ada3147a1.zip |
Remove the const to fix the -Wignored-qualifiers warning with GCC 8 (Part 2)
Diffstat (limited to 'toolkit/components')
-rw-r--r-- | toolkit/components/downloads/ApplicationReputation.cpp | 2 | ||||
-rw-r--r-- | toolkit/components/url-classifier/Entries.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/components/downloads/ApplicationReputation.cpp b/toolkit/components/downloads/ApplicationReputation.cpp index 7bd219dbf..1c94d6713 100644 --- a/toolkit/components/downloads/ApplicationReputation.cpp +++ b/toolkit/components/downloads/ApplicationReputation.cpp @@ -1000,7 +1000,7 @@ PendingLookup::GetSpecHash(nsACString& aSpec, nsACString& hexEncodedHash) static const char* const hex = "0123456789ABCDEF"; hexEncodedHash.SetCapacity(2 * binaryHash.Length()); for (size_t i = 0; i < binaryHash.Length(); ++i) { - auto c = static_cast<const unsigned char>(binaryHash[i]); + auto c = static_cast<unsigned char>(binaryHash[i]); hexEncodedHash.Append(hex[(c >> 4) & 0x0F]); hexEncodedHash.Append(hex[c & 0x0F]); } diff --git a/toolkit/components/url-classifier/Entries.h b/toolkit/components/url-classifier/Entries.h index 969f4f739..b7fb34516 100644 --- a/toolkit/components/url-classifier/Entries.h +++ b/toolkit/components/url-classifier/Entries.h @@ -100,7 +100,7 @@ struct SafebrowsingHash aStr.SetCapacity(2 * len); for (size_t i = 0; i < len; ++i) { - const char c = static_cast<const char>(buf[i]); + const char c = static_cast<char>(buf[i]); aStr.Append(lut[(c >> 4) & 0x0F]); aStr.Append(lut[c & 15]); } |