aboutsummaryrefslogtreecommitdiff
path: root/src/bigint/power.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bigint/power.rs')
-rw-r--r--src/bigint/power.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bigint/power.rs b/src/bigint/power.rs
index a4dd806..4b41f4f 100644
--- a/src/bigint/power.rs
+++ b/src/bigint/power.rs
@@ -31,7 +31,7 @@ macro_rules! pow_impl {
}
}
- impl<'b> Pow<&'b $T> for BigInt {
+ impl Pow<&$T> for BigInt {
type Output = BigInt;
#[inline]
@@ -40,7 +40,7 @@ macro_rules! pow_impl {
}
}
- impl<'a> Pow<$T> for &'a BigInt {
+ impl Pow<$T> for &BigInt {
type Output = BigInt;
#[inline]
@@ -49,7 +49,7 @@ macro_rules! pow_impl {
}
}
- impl<'a, 'b> Pow<&'b $T> for &'a BigInt {
+ impl Pow<&$T> for &BigInt {
type Output = BigInt;
#[inline]