restrict "std" namespace using .

This commit is contained in:
Zero Fanker 2024-04-25 19:11:06 -04:00
parent fc363aa59d
commit 00753d2ff2
17 changed files with 36 additions and 32 deletions

View file

@ -1280,10 +1280,10 @@ CString GetFreeID()
"Actions",
"AITriggerTypes",
};
if (find(std::begin(typeListSections), std::end(typeListSections), input) != std::end(typeListSections)) {
if (std::find(std::begin(typeListSections), std::end(typeListSections), input) != std::end(typeListSections)) {
return true;
}
if (find(std::begin(idListSections), std::end(idListSections), input) != std::end(idListSections)) {
if (std::find(std::begin(idListSections), std::end(idListSections), input) != std::end(idListSections)) {
return true;
}
return false;