Skip to content

Commit

Permalink
unbreak on older Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
strake committed Dec 18, 2018
1 parent 2200568 commit c4e151c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/power.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,6 @@ macro_rules! impl_Power {
($($t:ty),*) => { $(impl_Power!($t);)* };
}

impl_Power!(usize, u8, u16, u32, u64, u128);
impl_Power!(usize, u8, u16, u32, u64);
#[cfg(has_i128)]
impl_Power!(u128);

0 comments on commit c4e151c

Please sign in to comment.