diff options
| author | Peter Jaszkowiak <p.jaszkow@gmail.com> | 2021-12-13 22:00:50 -0700 |
|---|---|---|
| committer | Peter Jaszkowiak <p.jaszkow@gmail.com> | 2021-12-13 22:00:50 -0700 |
| commit | f0b714258fb01a2523c094d344f0993a006a8ab4 (patch) | |
| tree | 1714bd129648502f011df45223ce280a9c20e76d /compiler/rustc_monomorphize/src/util.rs | |
| parent | 8f117a77d0880ed59afcc1a19c72ec5c1e44b97c (diff) | |
| download | rust-f0b714258fb01a2523c094d344f0993a006a8ab4.tar.gz rust-f0b714258fb01a2523c094d344f0993a006a8ab4.zip | |
Remove `in_band_lifetimes` for `rustc_monomorphize`
Diffstat (limited to 'compiler/rustc_monomorphize/src/util.rs')
| -rw-r--r-- | compiler/rustc_monomorphize/src/util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_monomorphize/src/util.rs b/compiler/rustc_monomorphize/src/util.rs index 4392c02f874..6084cdda227 100644 --- a/compiler/rustc_monomorphize/src/util.rs +++ b/compiler/rustc_monomorphize/src/util.rs @@ -7,7 +7,7 @@ use std::io::prelude::*; /// /// During the same compile all closures dump the information in the same file /// "closure_profile_XXXXX.csv", which is created in the directory where the compiler is invoked. -crate fn dump_closure_profile(tcx: TyCtxt<'tcx>, closure_instance: Instance<'tcx>) { +crate fn dump_closure_profile<'tcx>(tcx: TyCtxt<'tcx>, closure_instance: Instance<'tcx>) { let mut file = if let Ok(file) = OpenOptions::new() .create(true) .append(true) |
