Use ToLower(...) instead of std::tolower

This commit is contained in:
practicalswift
2018-10-29 09:15:11 +01:00
parent e70cc8983c
commit c5fd143edb
3 changed files with 2 additions and 4 deletions

View File

@@ -422,7 +422,7 @@ bool ArgsManager::ParseParameters(int argc, const char* const argv[], std::strin
key.erase(is_index);
}
#ifdef WIN32
std::transform(key.begin(), key.end(), key.begin(), ::tolower);
std::transform(key.begin(), key.end(), key.begin(), ToLower);
if (key[0] == '/')
key[0] = '-';
#endif