| 154 | // * Release build |
| 155 | template <typename Int> |
| 156 | inline void FormatTwoDigits(Int value, char** cursor) { |
| 157 | assert(value >= 0 && value <= 99); |
| 158 | auto digit_pair = &digit_pairs[value * 2]; |
| 159 | FormatOneChar(digit_pair[1], cursor); |
| 160 | FormatOneChar(digit_pair[0], cursor); |
| 161 | } |
| 162 | |
| 163 | template <typename Int> |
| 164 | void FormatAllDigits(Int value, char** cursor) { |
no test coverage detected