fix(library/blast/state): bug at instantiate_urefs_mrefs
This commit is contained in:
parent
6f01a7339a
commit
5be1893d98
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ struct instantiate_urefs_mrefs_fn : public replace_visitor {
|
|||
}
|
||||
|
||||
virtual expr visit(expr const & e) {
|
||||
if (!has_mref(e) || !has_univ_metavar(e))
|
||||
if (!has_mref(e) && !has_univ_metavar(e))
|
||||
return e;
|
||||
else
|
||||
return replace_visitor::visit(e);
|
||||
|
|
Loading…
Reference in a new issue