mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +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
|
|
@ -119,7 +119,7 @@ ThrowInvalidThis(JSContext* aCx, const JS::CallArgs& aArgs,
|
|||
MSG_METHOD_THIS_DOES_NOT_IMPLEMENT_INTERFACE;
|
||||
MOZ_RELEASE_ASSERT(GetErrorArgCount(errorNumber) <= 2);
|
||||
JS_ReportErrorNumberUC(aCx, GetErrorMessage, nullptr,
|
||||
static_cast<const unsigned>(errorNumber),
|
||||
static_cast<unsigned>(errorNumber),
|
||||
funcNameStr.get(), ifaceName.get());
|
||||
return false;
|
||||
}
|
||||
|
|
@ -226,7 +226,7 @@ TErrorResult<CleanupPolicy>::SetPendingExceptionWithMessage(JSContext* aCx)
|
|||
args[argCount] = nullptr;
|
||||
|
||||
JS_ReportErrorNumberUCArray(aCx, dom::GetErrorMessage, nullptr,
|
||||
static_cast<const unsigned>(message->mErrorNumber),
|
||||
static_cast<unsigned>(message->mErrorNumber),
|
||||
argCount > 0 ? args : nullptr);
|
||||
|
||||
ClearMessage();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue