mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 23:28:20 +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
|
@ -42,12 +42,12 @@ public:
|
|||
/**
|
||||
* Type for the analyzer's main type.
|
||||
*/
|
||||
typedef uint32_t type_t;
|
||||
using type_t = uint32_t;
|
||||
|
||||
/**
|
||||
* Type for the analyzer's subtype.
|
||||
*/
|
||||
typedef uint32_t subtype_t;
|
||||
using subtype_t = uint32_t;
|
||||
|
||||
/**
|
||||
* Returns the tag's main type.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue