| 65 | FMT_ENABLE_IF(internal::is_output_iterator<OutputIt>::value&& |
| 66 | internal::is_string<S>::value)> |
| 67 | inline OutputIt format_to(OutputIt out, const std::locale& loc, |
| 68 | const S& format_str, Args&&... args) { |
| 69 | internal::check_format_string<Args...>(format_str); |
| 70 | using context = format_context_t<OutputIt, char_t<S>>; |
| 71 | format_arg_store<context, Args...> as{args...}; |
| 72 | return vformat_to(out, loc, to_string_view(format_str), |
| 73 | basic_format_args<context>(as)); |
| 74 | } |
| 75 | |
| 76 | FMT_END_NAMESPACE |
| 77 |
nothing calls this directly
no test coverage detected