Explorar o código

GLTF2: Fix signed/unsigned warning

Turo Lamminen %!s(int64=7) %!d(string=hai) anos
pai
achega
f470b8466f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      code/glTF2Asset.inl

+ 1 - 1
code/glTF2Asset.inl

@@ -204,7 +204,7 @@ unsigned int LazyDict<T>::Remove(const char* id)
         throw DeadlyExportError("GLTF: Object with id \"" + std::string(id) + "\" is not found");
     }
 
-    const int index = it->second;
+    const unsigned int index = it->second;
 
     mAsset.mUsedIds[id] = false;
     mObjsById.erase(id);