mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
fix uninitialized variable warnings
This commit is contained in:
parent
27cc928631
commit
648cf9602e
5 changed files with 10 additions and 10 deletions
|
@ -136,8 +136,8 @@ class pattern_inference_cfg : public default_rewriter_cfg {
|
|||
|
||||
ast_manager & m;
|
||||
pattern_inference_cfg & m_owner;
|
||||
family_id m_afid;
|
||||
unsigned m_num_bindings;
|
||||
family_id m_afid = null_family_id;
|
||||
unsigned m_num_bindings = 0;
|
||||
typedef map<entry, info *, obj_hash<entry>, default_eq<entry> > cache;
|
||||
cache m_cache;
|
||||
ptr_vector<info> m_info;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue