mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 12:58:44 +00:00
initialization order
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b9c9687caf
commit
9e7af79094
|
@ -69,9 +69,9 @@ namespace smt {
|
|||
m_lia(false),
|
||||
m_lra(false),
|
||||
m_non_utvpi_exprs(false),
|
||||
m_var_value_table(DEFAULT_HASHTABLE_INITIAL_CAPACITY, var_value_hash(*this), var_value_eq(*this)),
|
||||
m_test(m),
|
||||
m_factory(nullptr) {
|
||||
m_factory(nullptr),
|
||||
m_var_value_table(DEFAULT_HASHTABLE_INITIAL_CAPACITY, var_value_hash(*this), var_value_eq(*this)) {
|
||||
}
|
||||
|
||||
template<typename Ext>
|
||||
|
|
Loading…
Reference in a new issue