3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00

Bugfix for variable renamings (fec815b41e)

This commit is contained in:
Christoph M. Wintersteiger 2015-05-30 12:12:23 +01:00
parent fec815b41e
commit e240e6c430

View file

@ -154,7 +154,7 @@ class func_decl_dependencies::top_sort {
case OPEN:
set_color(cf, IN_PROGRESS);
if (visit_children(cf)) {
SASSERT(m_todo.back() == f);
SASSERT(m_todo.back() == cf);
m_todo.pop_back();
set_color(cf, CLOSED);
}