Formats an int value as "%X".
| 3456 | |
| 3457 | // Formats an int value as "%X". |
| 3458 | std::string String::FormatHexUInt32(UInt32 value) { |
| 3459 | std::stringstream ss; |
| 3460 | ss << std::hex << std::uppercase << value; |
| 3461 | return ss.str(); |
| 3462 | } |
| 3463 | |
| 3464 | // Formats an int value as "%X". |
| 3465 | std::string String::FormatHexInt(int value) { |
nothing calls this directly
no outgoing calls
no test coverage detected