mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
fix build again
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4bcf1bf2f6
commit
f52baf1e17
|
@ -112,6 +112,7 @@ namespace smt {
|
|||
};
|
||||
|
||||
class fpa_rm_value_proc : public model_value_proc {
|
||||
theory_fpa & m_th;
|
||||
ast_manager & m;
|
||||
fpa_util & m_fu;
|
||||
bv_util & m_bu;
|
||||
|
@ -119,7 +120,7 @@ namespace smt {
|
|||
|
||||
public:
|
||||
fpa_rm_value_proc(theory_fpa * th) :
|
||||
m(th->get_manager()), m_fu(th->m_fpa_util), m_bu(th->m_bv_util) {}
|
||||
m_th(*th), m(th->get_manager()), m_fu(th->m_fpa_util), m_bu(th->m_bv_util) { (void) m_th; }
|
||||
|
||||
void add_dependency(enode * e) { m_deps.push_back(model_value_dependency(e)); }
|
||||
|
||||
|
|
Loading…
Reference in a new issue