| 231 | } |
| 232 | |
| 233 | std::string Int64ToString(int64_t i) { |
| 234 | char buffer[24]; |
| 235 | FastInt64ToBuffer(i, buffer); |
| 236 | return std::string(buffer); |
| 237 | } |
| 238 | |
| 239 | std::string UInt64ToString(uint64_t u) { |
| 240 | char buffer[24]; |
nothing calls this directly
no test coverage detected