Formats an int value as "%X".
| 3463 | |
| 3464 | // Formats an int value as "%X". |
| 3465 | std::string String::FormatHexInt(int value) { |
| 3466 | return FormatHexUInt32(static_cast<UInt32>(value)); |
| 3467 | } |
| 3468 | |
| 3469 | // Formats a byte as "%02X". |
| 3470 | std::string String::FormatByte(unsigned char value) { |
nothing calls this directly
no outgoing calls
no test coverage detected