Browse Source

refactoring : remove dead code.

Signed-off-by: Kim Kulling <[email protected]>
Kim Kulling 12 years ago
parent
commit
e4fca83237
1 changed files with 1 additions and 4 deletions
  1. 1 4
      code/ObjFileImporter.cpp

+ 1 - 4
code/ObjFileImporter.cpp

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