mirror of
https://github.com/Z3Prover/z3
synced 2025-06-08 15:13:23 +00:00
fix #6034
This commit is contained in:
parent
f6b2874d7c
commit
363b69f588
10 changed files with 19 additions and 21 deletions
|
@ -73,7 +73,6 @@ extern "C" {
|
|||
void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic t) {
|
||||
Z3_TRY;
|
||||
LOG_Z3_tactic_dec_ref(c, t);
|
||||
RESET_ERROR_CODE();
|
||||
if (t)
|
||||
to_tactic(t)->dec_ref();
|
||||
Z3_CATCH;
|
||||
|
@ -104,7 +103,6 @@ extern "C" {
|
|||
void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p) {
|
||||
Z3_TRY;
|
||||
LOG_Z3_probe_dec_ref(c, p);
|
||||
RESET_ERROR_CODE();
|
||||
if (p)
|
||||
to_probe(p)->dec_ref();
|
||||
Z3_CATCH;
|
||||
|
@ -477,7 +475,6 @@ extern "C" {
|
|||
void Z3_API Z3_apply_result_dec_ref(Z3_context c, Z3_apply_result r) {
|
||||
Z3_TRY;
|
||||
LOG_Z3_apply_result_dec_ref(c, r);
|
||||
RESET_ERROR_CODE();
|
||||
if (r)
|
||||
to_apply_result(r)->dec_ref();
|
||||
Z3_CATCH;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue