mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
Use a release assert in EnumSerializer::Write (1356392).
This commit is contained in:
parent
e84c7ab0c3
commit
e79847e7b9
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ struct EnumSerializer {
|
|||
uintParamType;
|
||||
|
||||
static void Write(Message* aMsg, const paramType& aValue) {
|
||||
MOZ_ASSERT(EnumValidator::IsLegalValue(aValue));
|
||||
MOZ_RELEASE_ASSERT(EnumValidator::IsLegalValue(aValue));
|
||||
WriteParam(aMsg, uintParamType(aValue));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue