diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-08-24 22:14:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-24 22:14:15 +0200 |
| commit | e664ff5d8cdc8672955475c47b049a2844950167 (patch) | |
| tree | 7b1e365f827fc9375c919b76b13d7c5d5583a371 /compiler/rustc_codegen_ssa/src | |
| parent | 9e1f6281abb2962c8331a22cd1651ad880bd9c23 (diff) | |
| parent | 53ce92770d0b1005cfc07cc8f14011339e2abc26 (diff) | |
| download | rust-e664ff5d8cdc8672955475c47b049a2844950167.tar.gz rust-e664ff5d8cdc8672955475c47b049a2844950167.zip | |
Rollup merge of #129510 - GrigorenkoPV:fix-elided-named-lifetimes, r=cjgillot
Fix `elided_named_lifetimes` in code https://github.com/rust-lang/rust/pull/129207#issuecomment-2308428671 r? cjgillot
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/archive.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/archive.rs b/compiler/rustc_codegen_ssa/src/back/archive.rs index c8c1bd3e8f9..76a94de5433 100644 --- a/compiler/rustc_codegen_ssa/src/back/archive.rs +++ b/compiler/rustc_codegen_ssa/src/back/archive.rs @@ -125,7 +125,7 @@ pub trait ArchiveBuilderBuilder { rlib: &'a Path, outdir: &Path, bundled_lib_file_names: &FxIndexSet<Symbol>, - ) -> Result<(), ExtractBundledLibsError<'_>> { + ) -> Result<(), ExtractBundledLibsError<'a>> { let archive_map = unsafe { Mmap::map( File::open(rlib) |
