@@ -826,9 +826,8 @@ impl_integer_for_isize!(i8, test_integer_i8);
826826impl_integer_for_isize ! ( i16 , test_integer_i16) ;
827827impl_integer_for_isize ! ( i32 , test_integer_i32) ;
828828impl_integer_for_isize ! ( i64 , test_integer_i64) ;
829- impl_integer_for_isize ! ( isize , test_integer_isize) ;
830- #[ cfg( has_i128) ]
831829impl_integer_for_isize ! ( i128 , test_integer_i128) ;
830+ impl_integer_for_isize ! ( isize , test_integer_isize) ;
832831
833832macro_rules! impl_integer_for_usize {
834833 ( $T: ty, $test_mod: ident) => {
@@ -1052,9 +1051,8 @@ impl_integer_for_usize!(u8, test_integer_u8);
10521051impl_integer_for_usize ! ( u16 , test_integer_u16) ;
10531052impl_integer_for_usize ! ( u32 , test_integer_u32) ;
10541053impl_integer_for_usize ! ( u64 , test_integer_u64) ;
1055- impl_integer_for_usize ! ( usize , test_integer_usize) ;
1056- #[ cfg( has_i128) ]
10571054impl_integer_for_usize ! ( u128 , test_integer_u128) ;
1055+ impl_integer_for_usize ! ( usize , test_integer_usize) ;
10581056
10591057/// An iterator over binomial coefficients.
10601058pub struct IterBinomial < T > {
0 commit comments