Bladeren bron

Fix [3472310] Unnecessary output in LWOImporter

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1107 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
aramis_acg 13 jaren geleden
bovenliggende
commit
e52a49a990
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      code/LWOLoader.cpp

+ 2 - 2
code/LWOLoader.cpp

@@ -537,7 +537,7 @@ void LWOImporter::GenerateNodeGraph(std::map<uint16_t,aiNode*>& apcNodes)
 	root->mName.Set("<LWORoot>");
 
 	//Set parent of all children, inserting pivots
-	std::cout << "Set parent of all children" << std::endl;
+	//std::cout << "Set parent of all children" << std::endl;
 	std::map<uint16_t, aiNode*> mapPivot;
 	for (std::map<uint16_t,aiNode*>::iterator itapcNodes = apcNodes.begin(); itapcNodes != apcNodes.end(); ++itapcNodes) {
 
@@ -569,7 +569,7 @@ void LWOImporter::GenerateNodeGraph(std::map<uint16_t,aiNode*>& apcNodes)
 	}
 
 	//Merge pivot map into node map
-	std::cout << "Merge pivot map into node map" << std::endl;
+	//std::cout << "Merge pivot map into node map" << std::endl;
 	for (std::map<uint16_t, aiNode*>::iterator itMapPivot = mapPivot.begin(); itMapPivot != mapPivot.end(); ++itMapPivot) {
 		apcNodes[itMapPivot->first] = itMapPivot->second;
 	}