mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 04:27:12 +02:00
LibUnicode: Remove extraneous semi-colons at end of generator functions
This commit is contained in:
committed by
Linus Groh
parent
25272cabef
commit
589e7354fb
Notes:
sideshowbarker
2024-07-17 20:08:46 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/589e7354fbf Pull-request: https://github.com/SerenityOS/serenity/pull/12157 Reviewed-by: https://github.com/linusg ✅
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user