fix strnat case insensitive (oops)

This commit is contained in:
Jonathan 2023-07-21 20:43:19 -04:00
parent 19500bca0a
commit 7c9e16a7ec
1 changed files with 1 additions and 1 deletions

View File

@ -419,7 +419,7 @@ inline bool t_digit(char c)
return c >= 48 && c <= 57;
}
inline bool t_lower(char c)
inline char t_lower(char c)
{
return std::tolower(c);
}