mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
Remove remnants of _MP_MSBIGNUM checks.
This commit is contained in:
parent
053c3ec9e8
commit
886c3abec1
|
@ -44,7 +44,7 @@ typedef unsigned digit_t;
|
|||
template<bool SYNCH> class mpz_manager;
|
||||
template<bool SYNCH> class mpq_manager;
|
||||
|
||||
#if !defined(_MP_GMP) && !defined(_MP_MSBIGNUM) && !defined(_MP_INTERNAL)
|
||||
#if !defined(_MP_GMP) && !defined(_MP_INTERNAL)
|
||||
#ifdef _WINDOWS
|
||||
#define _MP_INTERNAL
|
||||
#else
|
||||
|
@ -52,13 +52,8 @@ template<bool SYNCH> class mpq_manager;
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(_MP_MSBIGNUM)
|
||||
typedef size_t digit_t;
|
||||
#elif defined(_MP_INTERNAL)
|
||||
typedef unsigned int digit_t;
|
||||
#endif
|
||||
|
||||
#ifndef _MP_GMP
|
||||
typedef unsigned int digit_t;
|
||||
class mpz_cell {
|
||||
unsigned m_size;
|
||||
unsigned m_capacity;
|
||||
|
|
Loading…
Reference in a new issue