LibWeb: Remove now-unnecessary clang-format off directive

This commit is contained in:
Timothy Flynn 2024-12-27 18:50:27 -05:00 committed by Tim Flynn
parent 27478ec7d4
commit 4d6a9f9d2d
Notes: github-actions[bot] 2024-12-28 13:40:28 +00:00

View file

@ -174,14 +174,11 @@ namespace Web::HTML {
#define SWITCH_TO_AND_EMIT_CURRENT_CHARACTER(new_state) \
SWITCH_TO_AND_EMIT_CHARACTER(current_input_character.value(), new_state)
// clang-format-18 handles the `state:` label rather badly.
// clang-format off
#define BEGIN_STATE(state) \
state: \
case State::state: { \
{ \
{
// clang-format on
#define END_STATE \
VERIFY_NOT_REACHED(); \