Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correctly cast char before using isspace
As specified in https://en.cppreference.com/w/cpp/string/byte/isspace we must cast char to `unsigned char` before using isspace. Else behaviour is undefined and it is an assert on Windows.
- Loading branch information