1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:07:34 +00:00

LibUnicode: Upgrade to CLDR version 41.0.0

Release notes: https://cldr.unicode.org/index/downloads/cldr-41

Note that the HourCycleRegion enum now contains 272 entires, thus needs
to be bumped from u8 to u16.
This commit is contained in:
Timothy Flynn 2022-04-05 17:58:38 -04:00 committed by Tim Flynn
parent 6a4fdae575
commit 1f2542247f
2 changed files with 3 additions and 7 deletions

View file

@ -23,7 +23,7 @@ enum class Era : u8;
enum class GeneralCategory : u8;
enum class GraphemeBreakProperty : u8;
enum class HourCycle : u8;
enum class HourCycleRegion : u8;
enum class HourCycleRegion : u16;
enum class Key : u8;
enum class KeywordCalendar : u8;
enum class KeywordColCaseFirst : u8;