| 558 | */ |
| 559 | template <typename S, typename... Args, typename Char = char_t<S>> |
| 560 | inline std::basic_string<Char> format(const text_style& ts, const S& format_str, |
| 561 | const Args&... args) { |
| 562 | return vformat(ts, to_string_view(format_str), |
| 563 | internal::make_args_checked<Args...>(format_str, args...)); |
| 564 | } |
| 565 | |
| 566 | FMT_END_NAMESPACE |
| 567 |
nothing calls this directly
no test coverage detected