| 1255 | |
| 1256 | template <typename Char, typename UInt> |
| 1257 | FMT_CONSTEXPR FMT_INLINE auto format_decimal(Char* out, UInt value, |
| 1258 | int num_digits) -> Char* { |
| 1259 | do_format_decimal(out, value, num_digits); |
| 1260 | return out + num_digits; |
| 1261 | } |
| 1262 | |
| 1263 | template <typename Char, typename UInt, typename OutputIt, |
| 1264 | FMT_ENABLE_IF(!std::is_pointer<remove_cvref_t<OutputIt>>::value)> |
no test coverage detected