diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-09-02 11:27:31 -0400 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-09-05 14:37:16 -0400 |
commit | 6c7b05a0ffcd0492b269d6e7e1eabcca08576a5d (patch) | |
tree | 8977fbd978e8bb54fa7874d61015dc4a13665dd8 /Userland/Libraries/LibJS/Runtime | |
parent | 1e0276f541a4261183a9d169787086523d1e4bff (diff) | |
download | serenity-6c7b05a0ffcd0492b269d6e7e1eabcca08576a5d.zip |
LibUnicode+LibJS: Move Unicode::get_available_currencies() to Locale.h
This is generated by GenerateLocaleData, which will soon be in the
Locale namespace. Move it out of CurrencyCode.h, as that will continue
to live in the Unicode namespace.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp b/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp index 776da44fc4..2fc0d2abd8 100644 --- a/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp +++ b/Userland/Libraries/LibJS/Runtime/Intl/Intl.cpp @@ -20,7 +20,6 @@ #include <LibJS/Runtime/Intl/RelativeTimeFormatConstructor.h> #include <LibJS/Runtime/Intl/SegmenterConstructor.h> #include <LibJS/Runtime/Temporal/TimeZone.h> -#include <LibUnicode/CurrencyCode.h> #include <LibUnicode/DateTimeFormat.h> #include <LibUnicode/Locale.h> #include <LibUnicode/NumberFormat.h> |