mirror of
https://github.com/catchorg/Catch2.git
synced 2026-01-29 17:52:31 +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.