]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_passes/src/weak_lang_items.rs
Rollup merge of #107100 - compiler-errors:issue-107087, r=lcnr
[rust.git] / compiler / rustc_passes / src / weak_lang_items.rs
index f0815fcd8db9a6de59b633dcdb12368d05e6bd1d..fc6372cf99ee8be90a2def5d6a32d41718df2f0e 100644 (file)
@@ -11,7 +11,7 @@
 
 /// Checks the crate for usage of weak lang items, returning a vector of all the
 /// language items required by this crate, but not defined yet.
-pub fn check_crate<'tcx>(tcx: TyCtxt<'tcx>, items: &mut lang_items::LanguageItems) {
+pub fn check_crate(tcx: TyCtxt<'_>, items: &mut lang_items::LanguageItems) {
     // These are never called by user code, they're generated by the compiler.
     // They will never implicitly be added to the `missing` array unless we do
     // so here.
@@ -40,7 +40,7 @@ pub fn check_crate<'tcx>(tcx: TyCtxt<'tcx>, items: &mut lang_items::LanguageItem
     verify(tcx, items);
 }
 
-fn verify<'tcx>(tcx: TyCtxt<'tcx>, items: &lang_items::LanguageItems) {
+fn verify(tcx: TyCtxt<'_>, items: &lang_items::LanguageItems) {
     // We only need to check for the presence of weak lang items if we're
     // emitting something that's not an rlib.
     let needs_check = tcx.sess.crate_types().iter().any(|kind| match *kind {