diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-04-05 17:58:38 -0400 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-04-07 08:29:10 -0400 |
commit | 1f2542247f98169838d8cb2a45fc02e6b5e34344 (patch) | |
tree | 8777b38f13b9bcc089089e1e79cd3e2d7c283708 /Userland | |
parent | 6a4fdae575f7cb38aeed9cc0fa7520c03e1f69f7 (diff) | |
download | serenity-1f2542247f98169838d8cb2a45fc02e6b5e34344.zip |
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.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibUnicode/Forward.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibUnicode/Forward.h b/Userland/Libraries/LibUnicode/Forward.h index 7dffc51a73..a872e156aa 100644 --- a/Userland/Libraries/LibUnicode/Forward.h +++ b/Userland/Libraries/LibUnicode/Forward.h @@ -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; |