2
0
Эх сурвалжийг харах

replaced "typedef" with "using" (I didn't notice Kim Kulling's previous commit until now)

Matias Lavik 6 жил өмнө
parent
commit
6d1514dd10
1 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 2 2
      code/FBXConverter.h

+ 2 - 2
code/FBXConverter.h

@@ -443,10 +443,10 @@ private:
     NodeAnimBitMap node_anim_chain_bits;
 
     // number of nodes with the same name
-    typedef std::unordered_map<std::string, unsigned int> NodeAnimNameMap;
+    using NodeAnimNameMap = std::unordered_map<std::string, unsigned int>;
     NodeAnimNameMap mNodeNameInstances;
 
-    typedef std::unordered_set<std::string> NodeNameCache;
+    using NodeNameCache = std::unordered_set<std::string>;
     NodeNameCache mNodeNames;
 
     double anim_fps;