mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +09:00
Remove the const to fix the -Wignored-qualifiers warning with GCC 8 (Part 2)
This commit is contained in:
parent
c8cdcbc5a7
commit
8fd121628a
4 changed files with 5 additions and 5 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue