| 21 | } |
| 22 | |
| 23 | constexpr bool IsLowerHexDigit(wchar_t character) |
| 24 | { |
| 25 | return character >= L'a' && character <= L'f'; |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | // Apparently no wide string to number parser accepted an explicit ending to the string |
no outgoing calls
no test coverage detected