| 2090 | FMT_ENABLE_IF(is_integral<T>::value && !std::is_same<T, bool>::value && |
| 2091 | std::is_same<OutputIt, buffer_appender<Char>>::value)> |
| 2092 | FMT_CONSTEXPR FMT_INLINE auto write(OutputIt out, T value, const format_specs<Char>& specs, locale_ref loc) |
| 2093 | -> OutputIt { |
| 2094 | if (specs.localized && write_loc(out, value, specs, loc)) return out; |
| 2095 | return write_int_noinline(out, make_write_int_arg(value, specs.sign), specs, loc); |
| 2096 | } |
| 2097 | |
| 2098 | // An inlined version of write used in format string compilation. |
| 2099 | template <typename Char, typename OutputIt, typename T, |
nothing calls this directly
no test coverage detected