Fixed a couple of nested template brackets that wasn't spaced out correctly.

pull/791/head
Trond Abusdal 2016-02-11 01:00:03 +01:00
parent 14e5cf380c
commit ccd9f92533
2 changed files with 2 additions and 2 deletions

View File

@ -299,7 +299,7 @@ void ColladaParser::ReadAnimationClipLibrary()
else else
animName = "animation_" + mAnimationClipLibrary.size(); animName = "animation_" + mAnimationClipLibrary.size();
std::pair<std::string, std::vector<std::string>> clip; std::pair<std::string, std::vector<std::string> > clip;
clip.first = animName; clip.first = animName;

View File

@ -324,7 +324,7 @@ namespace Assimp
AnimationLibrary mAnimationLibrary; AnimationLibrary mAnimationLibrary;
/** Animation clip library: clip animation references by ID */ /** Animation clip library: clip animation references by ID */
typedef std::vector<std::pair<std::string, std::vector<std::string>>> AnimationClipLibrary; typedef std::vector<std::pair<std::string, std::vector<std::string> > > AnimationClipLibrary;
AnimationClipLibrary mAnimationClipLibrary; AnimationClipLibrary mAnimationClipLibrary;
/** Pointer to the root node. Don't delete, it just points to one of /** Pointer to the root node. Don't delete, it just points to one of