Improve locale support

This commit is contained in:
Victor Zverovich
2022-09-02 11:44:08 -07:00
parent 56c72a671c
commit d6a8704605
5 changed files with 41 additions and 70 deletions

View File

@@ -22,9 +22,6 @@ template FMT_API auto locale_ref::get<std::locale>() const -> std::locale;
// Explicit instantiations for char.
template FMT_API auto write_int(unsigned long long, locale_ref)
-> std::basic_string<char>;
template FMT_API auto thousands_sep_impl(locale_ref)
-> thousands_sep_result<char>;
template FMT_API auto decimal_point_impl(locale_ref) -> char;
@@ -37,9 +34,6 @@ template FMT_API void vformat_to(buffer<char>&, string_view,
// Explicit instantiations for wchar_t.
template FMT_API auto write_int(unsigned long long, locale_ref)
-> std::basic_string<wchar_t>;
template FMT_API auto thousands_sep_impl(locale_ref)
-> thousands_sep_result<wchar_t>;
template FMT_API auto decimal_point_impl(locale_ref) -> wchar_t;