3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix init reorder warning

Signed-off-by: Lev Nachmanson <levnach@microsoft.com>
This commit is contained in:
Lev Nachmanson 2017-05-11 10:54:18 -07:00
parent 431feab1bf
commit cf8b35a6f3
9 changed files with 38 additions and 29 deletions

View file

@ -656,8 +656,8 @@ namespace smt {
m_asserted_qhead(0),
m_assume_eq_head(0),
m_num_conflicts(0),
m_solver(0),
m_model_eqs(DEFAULT_HASHTABLE_INITIAL_CAPACITY, var_value_hash(*this), var_value_eq(*this)),
m_solver(0),
m_resource_limit(*this) {
}