Appveyor take 2

This commit is contained in:
Akkadius 2018-11-19 02:57:38 -06:00
parent 020b144449
commit f3067872c4

View File

@ -67,7 +67,7 @@ const std::string str_tolower(std::string s)
{
std::transform(
s.begin(), s.end(), s.begin(),
[](unsigned char c) { return std::tolower(c); }
[](unsigned char c) { return ::tolower(c); }
);
return s;
}