Replace typedef by using.

pull/5007/head
Marc-Antoine Lortie 2023-03-14 09:17:39 -04:00
parent 4c015077b8
commit 25ab05eb49
1 changed files with 2 additions and 2 deletions

View File

@ -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:
/**