mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +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
|
|
@ -75,7 +75,7 @@ template<typename... Ts>
|
|||
inline bool
|
||||
ThrowErrorMessage(JSContext* aCx, const ErrNum aErrorNumber, Ts&&... aArgs)
|
||||
{
|
||||
binding_detail::ThrowErrorMessage(aCx, static_cast<const unsigned>(aErrorNumber),
|
||||
binding_detail::ThrowErrorMessage(aCx, static_cast<unsigned>(aErrorNumber),
|
||||
mozilla::Forward<Ts>(aArgs)...);
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue