3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-23 20:52:19 -07:00
parent 8c5993d9a6
commit 9c3f0190f4
9 changed files with 272 additions and 310 deletions

View file

@ -103,7 +103,10 @@ public:
}
ref_pair_vector_core& push_back(T * a, T* b) {
return push_back(std::make_pair(a, b));
inc_ref(a);
inc_ref(b);
m_nodes.push_back(elem_t(a, b));
return *this;
}
template <typename M>