瀏覽代碼

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

Trond Abusdal 9 年之前
父節點
當前提交
ccd9f92533
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      code/ColladaParser.cpp
  2. 1 1
      code/ColladaParser.h

+ 1 - 1
code/ColladaParser.cpp

@@ -299,7 +299,7 @@ void ColladaParser::ReadAnimationClipLibrary()
 				else
 					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;
 

+ 1 - 1
code/ColladaParser.h

@@ -324,7 +324,7 @@ namespace Assimp
 		AnimationLibrary mAnimationLibrary;
 
 		/** 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;
         
         /** Pointer to the root node. Don't delete, it just points to one of