mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 18:18:19 +00:00
Fix a bunch of missing class member initializations
This commit is contained in:
parent
7374688d0d
commit
3b0e8ee6f1
16 changed files with 40 additions and 41 deletions
|
@ -725,12 +725,12 @@ protected:
|
|||
std::vector<bool> managed_fields;
|
||||
|
||||
// Number of fields in the type.
|
||||
int num_fields;
|
||||
int num_fields = 0;
|
||||
|
||||
// Number of fields in the type when originally declared.
|
||||
int num_orig_fields;
|
||||
int num_orig_fields = 0;
|
||||
|
||||
type_decl_list* types;
|
||||
type_decl_list* types = nullptr;
|
||||
std::set<std::string> field_ids;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue