Update thousands_sep_impl signature

This commit is contained in:
Victor Zverovich
2021-06-04 21:12:47 -07:00
parent ef826b86cb
commit 7c3d3dfa29

View File

@ -115,7 +115,8 @@ template <typename Char> FMT_FUNC Char decimal_point_impl(locale_ref loc) {
.decimal_point(); .decimal_point();
} }
#else #else
template <typename Char> FMT_FUNC Char thousands_sep_impl(locale_ref) { template <typename Char>
FMT_FUNC auto thousands_sep_impl(locale_ref) -> thousands_sep_result<Char> {
return {"\03", FMT_STATIC_THOUSANDS_SEPARATOR}; return {"\03", FMT_STATIC_THOUSANDS_SEPARATOR};
} }
template <typename Char> FMT_FUNC Char decimal_point_impl(locale_ref) { template <typename Char> FMT_FUNC Char decimal_point_impl(locale_ref) {