mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +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
|
@ -574,9 +574,9 @@ using HookArgumentList = std::list<HookArgument>;
|
|||
class Plugin
|
||||
{
|
||||
public:
|
||||
typedef std::list<Component*> component_list;
|
||||
typedef std::list<BifItem> bif_item_list;
|
||||
typedef std::list<std::pair<HookType, int>> hook_list;
|
||||
using component_list = std::list<Component*>;
|
||||
using bif_item_list = std::list<BifItem>;
|
||||
using hook_list = std::list<std::pair<HookType, int>>;
|
||||
|
||||
/**
|
||||
* The different types of @loads supported by HookLoadFile.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue