3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-06 15:25:46 +00:00

add object z3 objects to target context during translation, to fix build regression failure on z3test.py

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-07-15 11:44:38 -07:00
parent 4f5b0667ef
commit 6f971a3a86
4 changed files with 4 additions and 4 deletions

View file

@ -131,7 +131,7 @@ namespace api {
m_last_obj = 0;
u_map<api::object*>::iterator it = m_allocated_objects.begin();
while (it != m_allocated_objects.end()) {
//warning_msg("Junk: %d", it->m_key);
DEBUG_CODE(warning_msg("Uncollected memory: %d: %s", it->m_key, typeid(*it->m_value).name()););
m_allocated_objects.remove(it->m_key);
dealloc(it->m_value);
it = m_allocated_objects.begin();