| 27 | |
| 28 | template <typename Char> |
| 29 | std::basic_string<Char> vformat( |
| 30 | const std::locale& loc, basic_string_view<Char> format_str, |
| 31 | basic_format_args<buffer_context<type_identity_t<Char>>> args) { |
| 32 | basic_memory_buffer<Char> buffer; |
| 33 | internal::vformat_to(loc, buffer, format_str, args); |
| 34 | return fmt::to_string(buffer); |
| 35 | } |
| 36 | } // namespace internal |
| 37 | |
| 38 | template <typename S, typename Char = char_t<S>> |
no test coverage detected