refactoring : remove dead code.

Signed-off-by: Kim Kulling <kim.kulling@googlemail.com>
pull/146/head
Kim Kulling 2013-10-08 16:30:17 +02:00
parent a889c1575f
commit e4fca83237
1 changed files with 1 additions and 4 deletions

View File

@ -591,15 +591,12 @@ void ObjFileImporter::appendChildToParentNode(aiNode *pParent, aiNode *pChild)
// Assign parent to child
pChild->mParent = pParent;
size_t sNumChildren = 0;
(void)sNumChildren; // remove warning on release build
// If already children was assigned to the parent node, store them in a
std::vector<aiNode*> temp;
if (pParent->mChildren != NULL)
{
sNumChildren = pParent->mNumChildren;
ai_assert( 0 != sNumChildren );
ai_assert( 0 != pParent->mNumChildren );
for (size_t index = 0; index < pParent->mNumChildren; index++)
{
temp.push_back(pParent->mChildren [ index ] );