From 15947aa1f0e53c2aaa33c824b960751e47b7c23c Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 10 Jan 2022 07:57:27 -0500 Subject: [PATCH] LibUnicode: Add an hour-cycle field to DateTimeFormat's format pattern --- Userland/Libraries/LibUnicode/DateTimeFormat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibUnicode/DateTimeFormat.h b/Userland/Libraries/LibUnicode/DateTimeFormat.h index 085eef78aa..e1104b3098 100644 --- a/Userland/Libraries/LibUnicode/DateTimeFormat.h +++ b/Userland/Libraries/LibUnicode/DateTimeFormat.h @@ -111,6 +111,7 @@ struct CalendarPattern { String skeleton {}; String pattern {}; Optional pattern12 {}; + Optional hour_cycle {}; // https://unicode.org/reports/tr35/tr35-dates.html#Calendar_Fields Optional era {};