| 2159 | !std::is_same<T, bool>::value && |
| 2160 | !std::is_same<T, Char>::value)> |
| 2161 | FMT_CONSTEXPR FMT_INLINE auto write(basic_appender<Char> out, T value, |
| 2162 | const format_specs& specs, locale_ref loc) |
| 2163 | -> basic_appender<Char> { |
| 2164 | if (specs.localized() && write_loc(out, value, specs, loc)) return out; |
| 2165 | return write_int_noinline<Char>(out, make_write_int_arg(value, specs.sign()), |
| 2166 | specs); |
| 2167 | } |
| 2168 | |
| 2169 | // An inlined version of write used in format string compilation. |
| 2170 | template <typename Char, typename OutputIt, typename T, |
no test coverage detected