From 886c3abec1dad877c0cfada633c9eff1bc0853ce Mon Sep 17 00:00:00 2001 From: Bruce Mitchener <bruce.mitchener@gmail.com> Date: Tue, 2 Aug 2022 08:43:59 +0700 Subject: [PATCH] Remove remnants of _MP_MSBIGNUM checks. --- src/util/mpz.h | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/util/mpz.h b/src/util/mpz.h index 1a7b6f55e..a1bb19395 100644 --- a/src/util/mpz.h +++ b/src/util/mpz.h @@ -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;