| 4062 | |
| 4063 | template <typename Locale, typename... T, FMT_ENABLE_IF(detail::is_locale<Locale>::value)> |
| 4064 | inline auto format(const Locale& loc, format_string<T...> fmt, T&&... args) -> std::string { |
| 4065 | return fmt::vformat(loc, string_view(fmt), fmt::make_format_args(args...)); |
| 4066 | } |
| 4067 | |
| 4068 | template <typename OutputIt, typename Locale, |
| 4069 | FMT_ENABLE_IF(detail::is_output_iterator<OutputIt, char>::value&& detail::is_locale<Locale>::value)> |
no test coverage detected