Commit 7c3d3dfa authored by Victor Zverovich's avatar Victor Zverovich

Update thousands_sep_impl signature

parent ef826b86
...@@ -115,7 +115,8 @@ template <typename Char> FMT_FUNC Char decimal_point_impl(locale_ref loc) { ...@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment