| 3471 | |
| 3472 | template <typename Char> |
| 3473 | inline std::basic_string<Char> internal::vformat( |
| 3474 | basic_string_view<Char> format_str, |
| 3475 | basic_format_args<buffer_context<type_identity_t<Char>>> args) { |
| 3476 | basic_memory_buffer<Char> buffer; |
| 3477 | internal::vformat_to(buffer, format_str, args); |
| 3478 | return to_string(buffer); |
| 3479 | } |
| 3480 | |
| 3481 | /** |
| 3482 | Returns the number of characters in the output of |
nothing calls this directly
no test coverage detected