Assimp mostly uses unsigned int where it perhaps should've used size_t, nonetheless SPBC insisted on size_t, causing lots of noisy compile warnings.

This commit is contained in:
Alexander Gessler
2016-05-05 15:41:50 +02:00
committed by Alexander Gessler
parent 167bc579c5
commit 896120b76a
2 changed files with 49 additions and 49 deletions

View File

@@ -101,7 +101,7 @@ public:
size_t mMaxBoneCount;
/// Per mesh index: Array of indices of the new submeshes.
std::vector< std::vector<size_t> > mSubMeshIndices;
std::vector< std::vector<unsigned int> > mSubMeshIndices;
};
} // end of namespace Assimp