App: modernize C++: replace 'typedef' with 'using'
This commit is contained in:
@@ -66,7 +66,7 @@ protected:
|
||||
|
||||
private:
|
||||
std::map<std::string, std::string>& nameMap;
|
||||
typedef std::pair<std::string, std::string> PropertyTag;
|
||||
using PropertyTag = std::pair<std::string, std::string>;
|
||||
std::stack<PropertyTag> propertyStack;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user