Collada: Silence uninitialized variable warning
This is a false positive. Value of 'method' is only used if 'targetMeshes' contains something and all paths through the first loop which add stuff to 'targetMeshes' also set 'method'.pull/1444/head
parent
702bc6358e
commit
41724ace2d
|
@ -674,7 +674,7 @@ aiMesh* ColladaLoader::CreateMesh( const ColladaParser& pParser, const Collada::
|
||||||
// create morph target meshes if any
|
// create morph target meshes if any
|
||||||
std::vector<aiMesh*> targetMeshes;
|
std::vector<aiMesh*> targetMeshes;
|
||||||
std::vector<float> targetWeights;
|
std::vector<float> targetWeights;
|
||||||
Collada::MorphMethod method;
|
Collada::MorphMethod method = Collada::Normalized;
|
||||||
|
|
||||||
for(std::map<std::string, Collada::Controller>::const_iterator it = pParser.mControllerLibrary.begin();
|
for(std::map<std::string, Collada::Controller>::const_iterator it = pParser.mControllerLibrary.begin();
|
||||||
it != pParser.mControllerLibrary.end(); it++)
|
it != pParser.mControllerLibrary.end(); it++)
|
||||||
|
|
Loading…
Reference in New Issue