Fix a bunch of missing class member initializations

This commit is contained in:
Tim Wojtulewicz 2023-01-14 16:27:46 -07:00
parent 7374688d0d
commit 3b0e8ee6f1
16 changed files with 40 additions and 41 deletions

View file

@ -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;
};