Remove the const to fix the -Wignored-qualifiers warning with GCC 8 (Part 2)

This commit is contained in:
trav90 2018-08-10 15:21:45 -05:00 committed by Roy Tam
commit 8fd121628a
4 changed files with 5 additions and 5 deletions

View file

@ -33,7 +33,7 @@
using namespace mozilla;
// Yikes! Casting a char to unichar can fill with ones!
#define CHAR_TO_UNICHAR(c) ((char16_t)(const unsigned char)c)
#define CHAR_TO_UNICHAR(c) ((char16_t)(unsigned char)c)
static NS_DEFINE_CID(kCContentIteratorCID, NS_CONTENTITERATOR_CID);
static NS_DEFINE_CID(kCPreContentIteratorCID, NS_PRECONTENTITERATOR_CID);