| 144 | |
| 145 | template <typename Int> |
| 146 | void FormatOneDigit(Int value, char** cursor) { |
| 147 | assert(value >= 0 && value <= 9); |
| 148 | FormatOneChar(static_cast<char>('0' + value), cursor); |
| 149 | } |
| 150 | |
| 151 | // GH-35662: I don't know why but the following combination causes SEGV: |
| 152 | // * template implementation without inline |
no test coverage detected