| 355 | } |
| 356 | |
| 357 | inline static void Int32ToStr(int32_t value, char* buffer) { |
| 358 | uint32_t u = static_cast<uint32_t>(value); |
| 359 | if (value < 0) { |
| 360 | *buffer++ = '-'; |
| 361 | u = ~u + 1; |
| 362 | } |
| 363 | Uint32ToStr(u, buffer); |
| 364 | } |
| 365 | |
| 366 | inline static void DoubleToStr(double value, char* buffer, size_t |
| 367 | #ifdef _MSC_VER |
no test coverage detected