Skip to content

Commit a898374

Browse files
authored
Rollup merge of #110366 - matthiaskrgr:compl_123, r=Nilstrieb
fix some clippy::complexity r? `@Nilstrieb`
2 parents 99e59db + bcd79c2 commit a898374

File tree

6 files changed

+19
-24
lines changed

6 files changed

+19
-24
lines changed

compiler/rustc_borrowck/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ impl<'cx, 'tcx> BorrowckInferCtxt<'cx, 'tcx> {
528528
where
529529
F: Fn() -> RegionCtxt,
530530
{
531-
let next_region = self.infcx.next_nll_region_var(origin.clone());
531+
let next_region = self.infcx.next_nll_region_var(origin);
532532
let vid = next_region.as_var();
533533

534534
if cfg!(debug_assertions) && !self.inside_canonicalization_ctxt() {

compiler/rustc_hir_analysis/src/collect/predicates_of.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -645,9 +645,8 @@ pub(super) fn implied_predicates_with_filter(
645645
};
646646

647647
// Combine the two lists to form the complete set of superbounds:
648-
let implied_bounds = &*tcx
649-
.arena
650-
.alloc_from_iter(superbounds.predicates().into_iter().chain(where_bounds_that_match));
648+
let implied_bounds =
649+
&*tcx.arena.alloc_from_iter(superbounds.predicates().chain(where_bounds_that_match));
651650
debug!(?implied_bounds);
652651

653652
// Now require that immediate supertraits are converted,

compiler/rustc_hir_typeck/src/fn_ctxt/adjust_fulfillment_errors.rs

+13-17
Original file line numberDiff line numberDiff line change
@@ -164,24 +164,20 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
164164
{
165165
for param in
166166
[param_to_point_at, fallback_param_to_point_at, self_param_to_point_at]
167+
.into_iter()
168+
.flatten()
167169
{
168-
if let Some(param) = param {
169-
let refined_expr = self.point_at_field_if_possible(
170-
def_id,
171-
param,
172-
variant_def_id,
173-
fields,
174-
);
175-
176-
match refined_expr {
177-
None => {}
178-
Some((refined_expr, _)) => {
179-
error.obligation.cause.span = refined_expr
180-
.span
181-
.find_ancestor_in_same_ctxt(error.obligation.cause.span)
182-
.unwrap_or(refined_expr.span);
183-
return true;
184-
}
170+
let refined_expr =
171+
self.point_at_field_if_possible(def_id, param, variant_def_id, fields);
172+
173+
match refined_expr {
174+
None => {}
175+
Some((refined_expr, _)) => {
176+
error.obligation.cause.span = refined_expr
177+
.span
178+
.find_ancestor_in_same_ctxt(error.obligation.cause.span)
179+
.unwrap_or(refined_expr.span);
180+
return true;
185181
}
186182
}
187183
}

compiler/rustc_monomorphize/src/partitioning/default.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ impl<'tcx> Partitioner<'tcx> for DefaultPartitioning {
8989
}
9090

9191
PreInliningPartitioning {
92-
codegen_units: codegen_units.into_values().map(|codegen_unit| codegen_unit).collect(),
92+
codegen_units: codegen_units.into_values().collect(),
9393
roots,
9494
internalization_candidates,
9595
}

compiler/rustc_query_impl/src/profiling_support.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ pub(crate) fn alloc_self_profile_query_strings_for_query_cache<'tcx, C>(
231231
// locked while doing so. Instead we copy out the
232232
// `(query_key, dep_node_index)` pairs and release the lock again.
233233
let mut query_keys_and_indices = Vec::new();
234-
query_cache.iter(&mut |k, _, i| query_keys_and_indices.push((k.clone(), i)));
234+
query_cache.iter(&mut |k, _, i| query_keys_and_indices.push((*k, i)));
235235

236236
// Now actually allocate the strings. If allocating the strings
237237
// generates new entries in the query cache, we'll miss them but

src/librustdoc/passes/collect_intra_doc_links.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ impl LinkCollector<'_, '_> {
13491349
if has_derive_trait_collision {
13501350
candidates.macro_ns = None;
13511351
}
1352-
candidates.into_iter().filter_map(|res| res).flatten().collect::<Vec<_>>()
1352+
candidates.into_iter().flatten().flatten().collect::<Vec<_>>()
13531353
}
13541354
}
13551355
}

0 commit comments

Comments
 (0)