3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

remove macro distinction #7270

This commit is contained in:
Nikolaj Bjorner 2024-07-08 13:56:23 -07:00
parent 18b6087b72
commit 6e069c1f41

View file

@ -1070,9 +1070,11 @@ void cmd_context::insert_rec_fun(func_decl* f, expr_ref_vector const& binding, s
}
func_decl * cmd_context::find_func_decl(symbol const & s) const {
#if 0
if (contains_macro(s)) {
throw cmd_exception("invalid function declaration reference, named expressions (aka macros) cannot be referenced ", s);
}
#endif
func_decls fs;
if (m_func_decls.find(s, fs)) {
if (fs.more_than_one())