| 17 | namespace internal { |
| 18 | template <typename Char> |
| 19 | typename buffer_context<Char>::iterator vformat_to( |
| 20 | const std::locale& loc, buffer<Char>& buf, |
| 21 | basic_string_view<Char> format_str, |
| 22 | basic_format_args<buffer_context<type_identity_t<Char>>> args) { |
| 23 | using range = buffer_range<Char>; |
| 24 | return vformat_to<arg_formatter<range>>(buf, to_string_view(format_str), args, |
| 25 | internal::locale_ref(loc)); |
| 26 | } |
| 27 | |
| 28 | template <typename Char> |
| 29 | std::basic_string<Char> vformat( |
no test coverage detected