Unnamed repository; edit this file 'description' to name the repository.
Fix beta Clippy
Chayim Refael Friedman 6 months ago
parent 3099a7f · commit ca6225c
-rw-r--r--crates/hir-ty/src/db.rs2
-rw-r--r--xtask/src/release.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir-ty/src/db.rs b/crates/hir-ty/src/db.rs
index c79ff98578..2ef7963322 100644
--- a/crates/hir-ty/src/db.rs
+++ b/crates/hir-ty/src/db.rs
@@ -291,7 +291,7 @@ pub trait HirDatabase: DefDatabase + std::fmt::Debug {
// cycle_initial = crate::variance::variances_of_cycle_initial,
cycle_result = crate::variance::variances_of_cycle_initial,
)]
- fn variances_of(&self, def: GenericDefId) -> VariancesOf<'_>;
+ fn variances_of<'db>(&'db self, def: GenericDefId) -> VariancesOf<'db>;
}
#[test]
diff --git a/xtask/src/release.rs b/xtask/src/release.rs
index d06a25c892..13cb44ebed 100644
--- a/xtask/src/release.rs
+++ b/xtask/src/release.rs
@@ -43,7 +43,7 @@ impl flags::Release {
.unwrap_or_default();
let tags = cmd!(sh, "git tag --list").read()?;
- let prev_tag = tags.lines().filter(|line| is_release_tag(line)).next_back().unwrap();
+ let prev_tag = tags.lines().rfind(|line| is_release_tag(line)).unwrap();
let contents = changelog::get_changelog(sh, changelog_n, &commit, prev_tag, &today)?;
let path = changelog_dir.join(format!("{today}-changelog-{changelog_n}.adoc"));