mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
initialization order
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b9c9687caf
commit
9e7af79094
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue