Skip to content

Commit

Permalink
Remove remnants of _MP_MSBIGNUM checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and NikolajBjorner committed Aug 2, 2022
1 parent 053c3ec commit 886c3ab
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/util/mpz.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,16 @@ 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
#define _MP_GMP
#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;
Expand Down

0 comments on commit 886c3ab

Please sign in to comment.