Skip to content

Commit 7b24546

Browse files
authored
Unrolled build for rust-lang#131815
Rollup merge of rust-lang#131815 - workingjubilee:did-you-mean-is-none-or, r=jieyouxu compiler: use `is_none_or` where it is clearly better heuristic was: if it easily allows removing bangs entirely? worth it. if it requires more effort or just moves the bang? not.
2 parents 06d261d + 47cfaa6 commit 7b24546

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

compiler/rustc_resolve/src/check_unused.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,11 @@ impl<'a, 'ra, 'tcx> UnusedImportCheckVisitor<'a, 'ra, 'tcx> {
184184

185185
// If the extern crate isn't in the extern prelude,
186186
// there is no way it can be written as a `use`.
187-
if !self
187+
if self
188188
.r
189189
.extern_prelude
190190
.get(&extern_crate.ident)
191-
.is_some_and(|entry| !entry.introduced_by_item)
191+
.is_none_or(|entry| entry.introduced_by_item)
192192
{
193193
continue;
194194
}

compiler/rustc_type_ir/src/search_graph/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ impl<D: Delegate<Cx = X>, X: Cx> SearchGraph<D> {
714714
// current goal is already part of the same cycle. This check could be
715715
// improved but seems to be good enough for now.
716716
let last = self.stack.raw.last().unwrap();
717-
if !last.heads.opt_lowest_cycle_head().is_some_and(|lowest| lowest <= head) {
717+
if last.heads.opt_lowest_cycle_head().is_none_or(|lowest| lowest > head) {
718718
continue;
719719
}
720720
}

0 commit comments

Comments
 (0)