| 1880 | |
| 1881 | template <typename Char, typename OutputIt> |
| 1882 | FMT_CONSTEXPR auto write_char(OutputIt out, Char value, |
| 1883 | const format_specs& specs) -> OutputIt { |
| 1884 | bool is_debug = specs.type() == presentation_type::debug; |
| 1885 | return write_padded<Char>(out, specs, 1, [=](reserve_iterator<OutputIt> it) { |
| 1886 | if (is_debug) return write_escaped_char(it, value); |
| 1887 | *it++ = value; |
| 1888 | return it; |
| 1889 | }); |
| 1890 | } |
| 1891 | |
| 1892 | template <typename Char> class digit_grouping { |
| 1893 | private: |
nothing calls this directly
no test coverage detected