1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:57:44 +00:00

Everywhere: Remove needless trailing semi-colons after functions

This is a new option in clang-format-16.
This commit is contained in:
Timothy Flynn 2023-07-07 22:48:11 -04:00 committed by Linus Groh
parent aff81d318b
commit c911781c21
243 changed files with 483 additions and 481 deletions

View file

@ -160,7 +160,7 @@ constexpr StringView color_primaries_to_string(ColorPrimaries color_primaries)
return "EBU Tech 3213"sv;
}
return "Reserved"sv;
};
}
constexpr StringView transfer_characteristics_to_string(TransferCharacteristics transfer_characteristics)
{
@ -203,7 +203,7 @@ constexpr StringView transfer_characteristics_to_string(TransferCharacteristics
return "ARIB STD-B67 (HLG, BT.2100)"sv;
}
return "Reserved"sv;
};
}
constexpr StringView matrix_coefficients_to_string(MatrixCoefficients matrix_coefficients)
{
@ -238,7 +238,7 @@ constexpr StringView matrix_coefficients_to_string(MatrixCoefficients matrix_coe
return "BT.2100 ICtCp"sv;
}
return "Reserved"sv;
};
}
constexpr StringView video_full_range_flag_to_string(VideoFullRangeFlag video_full_range_flag)
{
@ -251,6 +251,6 @@ constexpr StringView video_full_range_flag_to_string(VideoFullRangeFlag video_fu
return "Unspecified"sv;
}
return "Unknown"sv;
};
}
}