mirror of
https://github.com/catchorg/Catch2.git
synced 2025-07-07 01:45:31 +02:00

Root cause: The return type of ::tolower is int. So when we use ::tolower in std::transform(), it will generate this warning. If user turns on "treat warning as error", Catch build will fail due to this warning.