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

Fixed initialization order and unused variable warnings.

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2015-07-30 09:09:13 +01:00
parent 7c282d3719
commit 0cd406ca0b
4 changed files with 8 additions and 8 deletions

View file

@ -2431,8 +2431,8 @@ namespace smt {
m_array_util(m),
m_arith_util(m),
m_bv_util(m),
m_info(0),
m_cancel(false) {
m_cancel(false),
m_info(0) {
}
@ -3285,8 +3285,8 @@ namespace smt {
m_sm_solver(alloc(simple_macro_solver, m, m_q2info)),
m_hint_solver(alloc(hint_solver, m, m_q2info)),
m_nm_solver(alloc(non_auf_macro_solver, m, m_q2info, m_dependencies)),
m_new_constraints(m),
m_cancel(false) {
m_cancel(false),
m_new_constraints(m) {
}
model_finder::~model_finder() {