mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
support for smtlib2.6 datatype parsing
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5d17e28667
commit
aac7773a52
|
@ -795,7 +795,6 @@ void cmd_context::insert(symbol const & s, func_decl * f) {
|
|||
dictionary<func_decls>::entry * e = m_func_decls.insert_if_not_there2(s, func_decls());
|
||||
func_decls & fs = e->get_data().m_value;
|
||||
if (!fs.insert(m(), f)) {
|
||||
UNREACHABLE();
|
||||
std::string msg = "invalid declaration, ";
|
||||
msg += f->get_arity() == 0 ? "constant" : "function";
|
||||
msg += " '";
|
||||
|
|
Loading…
Reference in a new issue