mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28: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
|
@ -53,7 +53,7 @@ namespace plugin
|
|||
class Manager
|
||||
{
|
||||
public:
|
||||
typedef void (*bif_init_func)(Plugin*);
|
||||
using bif_init_func = void (*)(Plugin*);
|
||||
using plugin_list = std::list<Plugin*>;
|
||||
using component_list = Plugin::component_list;
|
||||
using inactive_plugin_list = std::list<std::pair<std::string, std::string>>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue