chore(Mobile): Indicate transform uses global tolower and not std::tolower

This commit is contained in:
Yimura 2022-01-29 23:35:13 +01:00
parent ccb045eb5a
commit be00df60e5

View File

@ -57,7 +57,7 @@ namespace big
auto& personal_veh = it.second;
std::string lower = label.c_str();
std::transform(lower.begin(), lower.end(), lower.begin(), tolower);
std::transform(lower.begin(), lower.end(), lower.begin(), ::tolower);
if (lower.find(lower_search) != std::string::npos)
{