| 264 | |
| 265 | template <> |
| 266 | char* WriteHexIntToBufferBackwards(char* ptr, i32 value, bool uppercase) |
| 267 | { |
| 268 | return WriteSignedHexIntToBufferBackwardsImpl(ptr, value, uppercase, TStringBuf("-80000000")); |
| 269 | } |
| 270 | |
| 271 | template <> |
| 272 | char* WriteHexIntToBufferBackwards(char* ptr, i64 value, bool uppercase) |
no test coverage detected