mirror of
https://github.com/catchorg/Catch2.git
synced 2025-03-25 20:04:46 +01:00

std::isalnum expects an int in the range of unsigned char or -1 (EOF), otherwise it exhibits undefined behavior. Casting from char to unsigned char avoids this. MSVC warns about this when compiling with /analyze.