| 2247 | |
| 2248 | public: |
| 2249 | explicit FormatInt(int value) { FormatSigned(value); } |
| 2250 | explicit FormatInt(long value) { FormatSigned(value); } |
| 2251 | explicit FormatInt(LongLong value) { FormatSigned(value); } |
| 2252 | explicit FormatInt(unsigned value) : str_(format_decimal(value)) {} |
nothing calls this directly
no test coverage detected