Browse Source

Fix broken autocorrect fix

Kim Kulling 4 years ago
parent
commit
faf53b8e0f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/AssetLib/Collada/ColladaLoader.cpp

+ 1 - 1
code/AssetLib/Collada/ColladaLoader.cpp

@@ -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;