mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
Replace most uses of typedef with using for type aliasing
This commit is contained in:
parent
7101f30646
commit
64748edab1
44 changed files with 100 additions and 101 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue