Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use ::std for tolower, include <cctype>
Some C++ compilers don't export C functions into `::` scope. This makes `tolower` accessible to those compilers. Also, add `include <cctype>` to make sure we are pulling in a header that contains it. References: * https://en.cppreference.com/w/cpp/header#C_compatibility_headers * http://www.cplusplus.com/reference/cctype/
- Loading branch information