3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 01:55:32 +00:00

name change

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2018-06-28 15:02:23 -07:00
parent fd8f972cac
commit c2f3428373
2 changed files with 14 additions and 14 deletions

View file

@ -79,7 +79,7 @@ class mpz_cell {
under winodws, m_ptr points to a mpz_cell that store the value.
*/
enum mpz_kind { mpz_small = 0, mpz_ptr = 1};
enum mpz_kind { mpz_small = 0, mpz_ptr_k = 1};
enum mpz_owner { mpz_self = 0, mpz_ext = 1};
class mpz {
@ -172,7 +172,7 @@ class mpz_manager {
if (n.m_ptr == nullptr || capacity(n) < c) {
deallocate(n);
n.m_val = 1;
n.m_kind = mpz_ptr;
n.m_kind = mpz_ptr_k;
n.m_owner = mpz_self;
n.m_ptr = allocate(c);
}