| 525 | } |
| 526 | |
| 527 | static void FormatHexNumber(StringBuilder &builder, uint64_t number) |
| 528 | { |
| 529 | fmt::format_to(builder.back_inserter(), "0x{:X}", number); |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * Format a given number as a number of bytes with the SI prefix. |
no test coverage detected