From 97508b74ebaccc1bf6b34cf408cff4d4818c9d44 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 15 Dec 2021 19:47:17 -0500 Subject: [PATCH] LibUnicode: Remove declaration of function which moved to another header Unicode::get_number_system_symbol is declared in UnicodeNumberFormat and defined in UnicodeNumberFormat.cpp. --- Userland/Libraries/LibUnicode/Locale.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 get_locale_territory_mapping(StringView locale, StringView Optional get_locale_script_mapping(StringView locale, StringView script); Optional get_locale_currency_mapping(StringView locale, StringView currency, Style style); Vector get_locale_key_mapping(StringView locale, StringView keyword); -Optional get_number_system_symbol(StringView locale, StringView system, StringView symbol); + Optional get_locale_list_patterns(StringView locale, StringView type, StringView style); Optional resolve_language_alias(StringView language);