mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fix finalize method
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ac7014a68b
commit
25e683e4e1
|
@ -220,19 +220,17 @@ namespace datatype {
|
|||
}
|
||||
|
||||
namespace decl {
|
||||
|
||||
|
||||
plugin::~plugin() {
|
||||
finalize();
|
||||
}
|
||||
|
||||
void plugin::finalize() {
|
||||
for (auto& kv : m_defs) {
|
||||
dealloc(kv.m_value);
|
||||
}
|
||||
for (auto& kv : m_defs)
|
||||
dealloc(kv.m_value);
|
||||
m_defs.reset();
|
||||
m_util = nullptr; // force deletion
|
||||
dealloc(m_asts);
|
||||
std::for_each(m_vectors.begin(), m_vectors.end(), delete_proc<ptr_vector<func_decl> >());
|
||||
reset();
|
||||
}
|
||||
|
||||
void plugin::reset() {
|
||||
|
|
Loading…
Reference in a new issue