Skip to content

Commit c4e151c

Browse files
committed
unbreak on older Rust
1 parent 2200568 commit c4e151c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/power.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,6 @@ macro_rules! impl_Power {
115115
($($t:ty),*) => { $(impl_Power!($t);)* };
116116
}
117117

118-
impl_Power!(usize, u8, u16, u32, u64, u128);
118+
impl_Power!(usize, u8, u16, u32, u64);
119+
#[cfg(has_i128)]
120+
impl_Power!(u128);

0 commit comments

Comments
 (0)