summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-12-15 19:47:17 -0500
committerBrian Gianforcaro <b.gianfo@gmail.com>2021-12-21 13:09:49 -0800
commit97508b74ebaccc1bf6b34cf408cff4d4818c9d44 (patch)
treec36c7b671a24d1ca0776ee7468462ecf1ee65059 /Userland
parent10a8b6d4116c6a627a6c189154af032f69b29c21 (diff)
downloadserenity-97508b74ebaccc1bf6b34cf408cff4d4818c9d44.zip
LibUnicode: Remove declaration of function which moved to another header
Unicode::get_number_system_symbol is declared in UnicodeNumberFormat and defined in UnicodeNumberFormat.cpp.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibUnicode/Locale.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibUnicode/Locale.h b/Userland/Libraries/LibUnicode/Locale.h
index 72addb675d..b451a698f0 100644
--- a/Userland/Libraries/LibUnicode/Locale.h
+++ b/Userland/Libraries/LibUnicode/Locale.h
@@ -147,7 +147,7 @@ Optional<StringView> get_locale_territory_mapping(StringView locale, StringView
Optional<StringView> get_locale_script_mapping(StringView locale, StringView script);
Optional<StringView> get_locale_currency_mapping(StringView locale, StringView currency, Style style);
Vector<StringView> get_locale_key_mapping(StringView locale, StringView keyword);
-Optional<StringView> get_number_system_symbol(StringView locale, StringView system, StringView symbol);
+
Optional<ListPatterns> get_locale_list_patterns(StringView locale, StringView type, StringView style);
Optional<StringView> resolve_language_alias(StringView language);