| 2082 | } |
| 2083 | |
| 2084 | template <typename Char, typename OutputIt, typename T> FMT_CONSTEXPR FMT_NOINLINE auto |
| 2085 | write_int_noinline(OutputIt out, write_int_arg<T> arg, const format_specs<Char>& specs, locale_ref loc) -> OutputIt { |
| 2086 | return write_int(out, arg, specs, loc); |
| 2087 | } |
| 2088 | |
| 2089 | template <typename Char, typename OutputIt, typename T, |
| 2090 | FMT_ENABLE_IF(is_integral<T>::value && !std::is_same<T, bool>::value && |
nothing calls this directly
no outgoing calls
no test coverage detected