| 1175 | template <typename Char> |
| 1176 | FMT_API auto decimal_point_impl(locale_ref loc) -> Char; |
| 1177 | template <typename Char> inline auto decimal_point(locale_ref loc) -> Char { |
| 1178 | return Char(decimal_point_impl<char>(loc)); |
| 1179 | } |
| 1180 | template <> inline auto decimal_point(locale_ref loc) -> wchar_t { |
| 1181 | return decimal_point_impl<wchar_t>(loc); |
| 1182 | } |
nothing calls this directly
no outgoing calls
no test coverage detected