| 219 | } |
| 220 | |
| 221 | std::string Int32ToString(int32_t i) { |
| 222 | char buffer[12]; |
| 223 | FastInt32ToBuffer(i, buffer); |
| 224 | return std::string(buffer); |
| 225 | } |
| 226 | |
| 227 | std::string UInt32ToString(uint32_t u) { |
| 228 | char buffer[12]; |
nothing calls this directly
no test coverage detected