| 4201 | |
| 4202 | public: |
| 4203 | FMT_CONSTEXPR20 explicit format_int(int value) : str_(format_signed(value)) {} |
| 4204 | FMT_CONSTEXPR20 explicit format_int(long value) |
| 4205 | : str_(format_signed(value)) {} |
| 4206 | FMT_CONSTEXPR20 explicit format_int(long long value) |
nothing calls this directly
no outgoing calls
no test coverage detected