| 3353 | |
| 3354 | template <typename Char> |
| 3355 | typename buffer_context<Char>::iterator internal::vformat_to( |
| 3356 | internal::buffer<Char>& buf, basic_string_view<Char> format_str, |
| 3357 | basic_format_args<buffer_context<type_identity_t<Char>>> args) { |
| 3358 | using range = buffer_range<Char>; |
| 3359 | return vformat_to<arg_formatter<range>>(buf, to_string_view(format_str), |
| 3360 | args); |
| 3361 | } |
| 3362 | |
| 3363 | template <typename S, typename Char = char_t<S>, |
| 3364 | FMT_ENABLE_IF(internal::is_string<S>::value)> |
nothing calls this directly
no test coverage detected