Replace most uses of typedef with using for type aliasing

This commit is contained in:
Tim Wojtulewicz 2021-10-11 14:51:10 -07:00
parent 7101f30646
commit 64748edab1
44 changed files with 100 additions and 101 deletions

View file

@ -424,8 +424,8 @@ protected:
static bool IsDisabled(const analyzer::Tag& tag);
private:
typedef std::set<Tag> TagSet;
typedef std::map<std::string, TagSet*> MIMEMap;
using TagSet = std::set<Tag>;
using MIMEMap = std::map<std::string, TagSet*>;
TagSet* LookupMIMEType(const std::string& mtype, bool add_if_not_found);