1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 13:58:49 +00:00

No issue - Fallthrough attributes must be terminated with semicolon.

This also fixes building with Clang 15 on Linux.
This commit is contained in:
Job Bautista
2022-12-25 14:50:24 +08:00
committed by roytam1
parent ca3361fb57
commit 5c505b86ca
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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;
+1 -1
View File
@@ -1558,7 +1558,7 @@ ParseRegExpFlags(const CharT* chars, size_t length, RegExpFlag* flagsOut, char16
return false;
break;
}
MOZ_FALLTHROUGH
MOZ_FALLTHROUGH;
default:
return false;
}