mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-08 07:33:53 +00: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.