mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
No issue - Fallthrough attributes must be terminated with semicolon.
This also fixes building with Clang 15 on Linux.
This commit is contained in:
parent
ca3361fb57
commit
5c505b86ca
2 changed files with 2 additions and 2 deletions
|
|
@ -987,7 +987,7 @@ RegExpParser<CharT>::ParseClassEscape(char16_t* char_class, widechar *value,
|
|||
}
|
||||
return true;
|
||||
}
|
||||
MOZ_FALLTHROUGH
|
||||
MOZ_FALLTHROUGH;
|
||||
default:
|
||||
if (!ParseClassCharacterEscape(value))
|
||||
return false;
|
||||
|
|
|
|||
|
|
@ -1558,7 +1558,7 @@ ParseRegExpFlags(const CharT* chars, size_t length, RegExpFlag* flagsOut, char16
|
|||
return false;
|
||||
break;
|
||||
}
|
||||
MOZ_FALLTHROUGH
|
||||
MOZ_FALLTHROUGH;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue