| 2890 | |
| 2891 | public: |
| 2892 | explicit format_int(int value) { format_signed(value); } |
| 2893 | explicit format_int(long value) { format_signed(value); } |
| 2894 | explicit format_int(long long value) { format_signed(value); } |
| 2895 | explicit format_int(unsigned value) : str_(format_decimal(value)) {} |
nothing calls this directly
no test coverage detected