3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-14 18:06:15 +00:00

update mpz for NO_GMP

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-07-03 18:31:05 -07:00
parent b61fa40063
commit dfdf7a0e4a
2 changed files with 10 additions and 11 deletions

View file

@ -356,7 +356,7 @@ void mpz_manager<SYNCH>::set_big_ui64(mpz & c, uint64_t v) {
#ifdef _MP_GMP
template<bool SYNCH>
mpz_manager<SYNCH>::ensure_mpz_t(mpz const& a) {
mpz_manager<SYNCH>::ensure_mpz_t::ensure_mpz_t(mpz const& a) {
if (is_small(a)) {
m_result = &m_local;
mpz_init(m_local);