| 164 | // unsigned). |
| 165 | template <typename T, typename Context, typename Char> |
| 166 | void convert_arg(basic_format_arg<Context>& arg, Char type) { |
| 167 | arg.visit(arg_converter<T, Context>(arg, type)); |
| 168 | } |
| 169 | |
| 170 | // Converts an integer argument to char for printf. |
| 171 | template <typename Context> class char_converter { |