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