about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-01-05 18:08:09 +0000
committerGitHub <noreply@github.com>2022-01-05 18:08:09 +0000
commit97838b183c57f2b09304e3cfcfcb94b970e8a1b7 (patch)
tree389f8939a6ca7a5741a255c105a43265e01c0ef6
parentc5049bdcdaefd7650a58fa9f393ad7351e5c5462 (diff)
parent04cb85032f4779bb79a7abf7e0aa915aa5b1c5dc (diff)
downloadrust-97838b183c57f2b09304e3cfcfcb94b970e8a1b7.tar.gz
rust-97838b183c57f2b09304e3cfcfcb94b970e8a1b7.zip
Merge #11198
11198: Remove unused lifetime r=lnicola a=Aaron1011



Co-authored-by: Aaron Hill <aa1ronham@gmail.com>
-rw-r--r--crates/hir_ty/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/lib.rs b/crates/hir_ty/src/lib.rs
index 1950820a372..f1280fcc101 100644
--- a/crates/hir_ty/src/lib.rs
+++ b/crates/hir_ty/src/lib.rs
@@ -358,7 +358,7 @@ where
     struct ErrorReplacer {
         vars: usize,
     }
-    impl<'i> Folder<Interner> for ErrorReplacer {
+    impl Folder<Interner> for ErrorReplacer {
         type Error = NoSolution;
 
         fn as_dyn(&mut self) -> &mut dyn Folder<Interner, Error = Self::Error> {