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 a86041112f
commit d7e9d36df5
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

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)
{