| 610 | template <typename S, typename... T, |
| 611 | typename Char = enable_if_t<detail::is_string<S>::value, char_t<S>>> |
| 612 | inline auto sprintf(const S& fmt, const T&... args) -> std::basic_string<Char> { |
| 613 | return vsprintf(detail::to_string_view(fmt), |
| 614 | fmt::make_format_args<basic_printf_context<Char>>(args...)); |
| 615 | } |
| 616 | |
| 617 | template <typename Char> |
| 618 | inline auto vfprintf( |
nothing calls this directly
no test coverage detected