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

LibUnicode: Do not assume time zones & meta zones have a 1-to-1 mapping

The generator parses metaZones.json to form a mapping of meta zones to
time zones (AKA "golden zone" in TR-35). This parser errantly assumed
this was a 1-to-1 mapping.
This commit is contained in:
Timothy Flynn 2022-01-06 10:40:18 -05:00 committed by Andreas Kling
parent 62d8d1fdfd
commit 6d7d9dd324
4 changed files with 83 additions and 10 deletions

View file

@ -35,7 +35,7 @@ enum class ScriptTag : u8;
enum class StandardNumberFormatType : u8;
enum class Style : u8;
enum class Territory : u8;
enum class TimeZone : u8;
enum class TimeZone : u16;
enum class Weekday : u8;
enum class WordBreakProperty : u8;