about summary refs log tree commit diff
path: root/src/libcore/internal_macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/internal_macros.rs')
-rw-r--r--src/libcore/internal_macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/internal_macros.rs b/src/libcore/internal_macros.rs
index 9f0f6fd49fb..faca785e488 100644
--- a/src/libcore/internal_macros.rs
+++ b/src/libcore/internal_macros.rs
@@ -7,7 +7,7 @@ macro_rules! forward_ref_unop {
     };
     (impl $imp:ident, $method:ident for $t:ty, #[$attr:meta]) => {
         #[$attr]
-        impl<'a> $imp for &'a $t {
+        impl $imp for &$t {
             type Output = <$t as $imp>::Output;
 
             #[inline]