| 162 | |
| 163 | template <typename Range, typename Context, typename Id> |
| 164 | void format_arg( |
| 165 | basic_format_parse_context<typename Range::value_type>& parse_ctx, |
| 166 | Context& ctx, Id arg_id) { |
| 167 | ctx.advance_to( |
| 168 | visit_format_arg(arg_formatter<Range>(ctx, &parse_ctx), ctx.arg(arg_id))); |
| 169 | } |
| 170 | |
| 171 | // vformat_to is defined in a subnamespace to prevent ADL. |
| 172 | namespace cf { |
nothing calls this directly
no test coverage detected