mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:28:11 +00:00
LibUnicode: Remove extraneous semi-colons at end of generator functions
This commit is contained in:
parent
25272cabef
commit
589e7354fb
1 changed files with 4 additions and 4 deletions
|
@ -598,7 +598,7 @@ static Optional<Unicode::DayPeriod> day_period_from_string(StringView day_period
|
||||||
if (day_period == "night2"sv)
|
if (day_period == "night2"sv)
|
||||||
return Unicode::DayPeriod::Night2;
|
return Unicode::DayPeriod::Night2;
|
||||||
return {};
|
return {};
|
||||||
};
|
}
|
||||||
|
|
||||||
static ErrorOr<void> parse_hour_cycles(String core_path, UnicodeLocaleData& locale_data)
|
static ErrorOr<void> parse_hour_cycles(String core_path, UnicodeLocaleData& locale_data)
|
||||||
{
|
{
|
||||||
|
@ -643,7 +643,7 @@ static ErrorOr<void> parse_hour_cycles(String core_path, UnicodeLocaleData& loca
|
||||||
});
|
});
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
};
|
}
|
||||||
|
|
||||||
static ErrorOr<void> parse_meta_zones(String core_path, UnicodeLocaleData& locale_data)
|
static ErrorOr<void> parse_meta_zones(String core_path, UnicodeLocaleData& locale_data)
|
||||||
{
|
{
|
||||||
|
@ -675,7 +675,7 @@ static ErrorOr<void> parse_meta_zones(String core_path, UnicodeLocaleData& local
|
||||||
locale_data.meta_zones.set("UTC"sv, { *time_zone });
|
locale_data.meta_zones.set("UTC"sv, { *time_zone });
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
};
|
}
|
||||||
|
|
||||||
static constexpr auto is_char(char ch)
|
static constexpr auto is_char(char ch)
|
||||||
{
|
{
|
||||||
|
@ -1576,7 +1576,7 @@ static ErrorOr<void> parse_day_periods(String core_path, UnicodeLocaleData& loca
|
||||||
});
|
});
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
};
|
}
|
||||||
|
|
||||||
static ErrorOr<void> parse_all_locales(String core_path, String dates_path, UnicodeLocaleData& locale_data)
|
static ErrorOr<void> parse_all_locales(String core_path, String dates_path, UnicodeLocaleData& locale_data)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue