From 9ef1350d2fe01d8adc29985d58f200e5a453ef82 Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Sat, 19 Dec 2015 11:59:42 +0100 Subject: Use gmp_uint_least32_t in bitfields instead of unsigned int. --- gmp-impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gmp-impl.h') diff --git a/gmp-impl.h b/gmp-impl.h index 10f002bd0..698758104 100644 --- a/gmp-impl.h +++ b/gmp-impl.h @@ -2295,8 +2295,8 @@ __GMP_DECLSPEC mp_limb_t gmp_primesieve (mp_ptr, mp_limb_t); struct fft_table_nk { - unsigned int n:27; - unsigned int k:5; + gmp_uint_least32_t n:27; + gmp_uint_least32_t k:5; }; #ifndef FFT_TABLE_ATTRS -- cgit v1.2.1