mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 06:32:54 +00:00
LibUnicode: Remove extraneous semi-colons at end of generator functions
This commit is contained in:
parent
25272cabef
commit
589e7354fb
Notes:
sideshowbarker
2024-07-17 20:08:46 +09:00
Author: https://github.com/trflynn89
Commit: 589e7354fb
Pull-request: https://github.com/SerenityOS/serenity/pull/12157
Reviewed-by: https://github.com/linusg ✅
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)
|
||||
return Unicode::DayPeriod::Night2;
|
||||
return {};
|
||||
};
|
||||
}
|
||||
|
||||
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 {};
|
||||
};
|
||||
}
|
||||
|
||||
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 });
|
||||
|
||||
return {};
|
||||
};
|
||||
}
|
||||
|
||||
static constexpr auto is_char(char ch)
|
||||
{
|
||||
|
@ -1576,7 +1576,7 @@ static ErrorOr<void> parse_day_periods(String core_path, UnicodeLocaleData& loca
|
|||
});
|
||||
|
||||
return {};
|
||||
};
|
||||
}
|
||||
|
||||
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