| 2148 | |
| 2149 | template <typename Char, typename OutputIt, typename T> |
| 2150 | FMT_CONSTEXPR FMT_NOINLINE auto write_int_noinline(OutputIt out, |
| 2151 | write_int_arg<T> arg, |
| 2152 | const format_specs& specs) |
| 2153 | -> OutputIt { |
| 2154 | return write_int<Char>(out, arg, specs); |
| 2155 | } |
| 2156 | |
| 2157 | template <typename Char, typename T, |
| 2158 | FMT_ENABLE_IF(is_integral<T>::value && |
nothing calls this directly
no outgoing calls
no test coverage detected