| 173 | |
| 174 | template <typename Char, typename Context> |
| 175 | void printf(buffer<Char>& buf, basic_string_view<Char> format, |
| 176 | basic_format_args<Context> args) { |
| 177 | Context(std::back_inserter(buf), format, args).format(); |
| 178 | } |
| 179 | |
| 180 | template <typename OutputIt, typename Char, typename Context> |
| 181 | internal::truncating_iterator<OutputIt> printf( |
no test coverage detected