mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
fix to closure
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4915fb080b
commit
ca12a8482f
|
@ -2329,7 +2329,7 @@ bool ast_manager::is_label_lit(expr const * n, buffer<symbol> & names) const {
|
|||
return false;
|
||||
}
|
||||
func_decl const * decl = to_app(n)->get_decl();
|
||||
for (parameter const& p : decl->parameters()) {
|
||||
for (parameter const& p : decl->parameters())
|
||||
names.push_back(p.get_symbol());
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue