Browse Source

Replace typedef by using.

Marc-Antoine Lortie 2 years ago
parent
commit
25ab05eb49
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/unit/ImportExport/MDL/utMDLImporter_HL1_Nodes.cpp

+ 2 - 2
test/unit/ImportExport/MDL/utMDLImporter_HL1_Nodes.cpp

@@ -59,12 +59,12 @@ class utMDLImporter_HL1_Nodes : public ::testing::Test {
     * @note Represents a flattened node hierarchy where each item is a pair
     * containing the node level and it's name.
     */
-    typedef std::vector<std::pair<unsigned int, std::string>> Hierarchy;
+    using Hierarchy = std::vector<std::pair<unsigned int, std::string>>;
 
     /**
     * @note A vector of strings. Used for symplifying syntax.
     */
-    typedef std::vector<std::string> StringVector;
+    using StringVector = std::vector<std::string>;
 
 public:
     /**