mirror of
https://github.com/Z3Prover/z3
synced 2025-05-12 18:24:43 +00:00
play nice with sanitizers
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6f65051f2c
commit
f4472927c0
5 changed files with 14 additions and 5 deletions
|
@ -401,7 +401,9 @@ public:
|
|||
|
||||
static mpz mk_z(int val) { return mpz(val); }
|
||||
|
||||
void del(mpz & a);
|
||||
void del(mpz & a) { del(this, a); }
|
||||
|
||||
static void del(mpz_manager* m, mpz & a);
|
||||
|
||||
void add(mpz const & a, mpz const & b, mpz & c);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue