mirror of
https://github.com/catchorg/Catch2.git
synced 2026-07-08 17:40:50 +02:00
88a6ff0b65
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.