mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
disambiguate calls to set
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4f5133cf72
commit
65834661a8
|
@ -213,7 +213,9 @@ extern "C" {
|
|||
// must start loggging here, since function uses Z3_get_sort_kind above
|
||||
LOG_Z3_get_finite_domain_sort_size(c, s, out);
|
||||
RESET_ERROR_CODE();
|
||||
VERIFY(mk_c(c)->datalog_util().try_get_size(to_sort(s), *out));
|
||||
uint64 _out = 0;
|
||||
VERIFY(mk_c(c)->datalog_util().try_get_size(to_sort(s), _out));
|
||||
*out = static_cast<__uint64>(_out);
|
||||
return Z3_TRUE;
|
||||
|
||||
Z3_CATCH_RETURN(Z3_FALSE);
|
||||
|
|
Loading…
Reference in a new issue