mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
fix #5238
This commit is contained in:
parent
51a4db862a
commit
ff480d1183
2 changed files with 3 additions and 1 deletions
|
@ -1123,7 +1123,7 @@ bool cmd_context::try_mk_builtin_app(symbol const & s, unsigned num_args, expr *
|
|||
result = m().mk_app(fid, k, num_indices, indices, num_args, args, range);
|
||||
}
|
||||
CHECK_SORT(result.get());
|
||||
return true;
|
||||
return nullptr != result.get();
|
||||
}
|
||||
|
||||
bool cmd_context::try_mk_declared_app(symbol const & s, unsigned num_args, expr * const * args,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue