| 615 | |
| 616 | template <typename OutputIt> |
| 617 | auto write_padding(OutputIt out, pad_type pad, int width) -> OutputIt { |
| 618 | if (pad == pad_type::none) return out; |
| 619 | return detail::fill_n(out, width, pad == pad_type::space ? ' ' : '0'); |
| 620 | } |
| 621 | |
| 622 | template <typename OutputIt> |
| 623 | auto write_padding(OutputIt out, pad_type pad) -> OutputIt { |
no test coverage detected