Fix broken autocorrect fix

pull/3635/head
Kim Kulling 2021-02-02 23:33:02 +01:00
parent 6ee1a32fb2
commit faf53b8e0f
1 changed files with 1 additions and 1 deletions

View File

@ -1538,7 +1538,7 @@ void ColladaLoader::AddTexture(aiMaterial &mat,
map = sampler.mUVId;
} else {
map = -1;
for (std::_String_const_iterator<std::_String_val<std::_Simple_types<char> > >::value_type it : sampler.mUVChannel) {
for (auto it : sampler.mUVChannel) {
if (IsNumeric(it)) {
map = strtoul10(&it);
break;