Skip to content

Commit 6892fcd

Browse files
committed
simplify merging of two vecs
1 parent 27d8a57 commit 6892fcd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_pattern_analysis/src/constructor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ impl ConstructorSet {
979979
&& !(pcx.is_top_level && matches!(self, Self::NoConstructors))
980980
{
981981
// Treat all missing constructors as nonempty.
982-
missing.extend(missing_empty.drain(..));
982+
missing.append(&mut missing_empty);
983983
}
984984

985985
SplitConstructorSet { present, missing, missing_empty }

compiler/rustc_resolve/src/late/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2178,7 +2178,7 @@ impl<'a: 'ast, 'ast, 'tcx> LateResolutionVisitor<'a, '_, 'ast, 'tcx> {
21782178
let (span, text) = match path.segments.first() {
21792179
Some(seg) if let Some(name) = seg.ident.as_str().strip_prefix("let") => {
21802180
// a special case for #117894
2181-
let name = name.strip_prefix("_").unwrap_or(name);
2181+
let name = name.strip_prefix('_').unwrap_or(name);
21822182
(ident_span, format!("let {name}"))
21832183
}
21842184
_ => (ident_span.shrink_to_lo(), "let ".to_string()),

0 commit comments

Comments
 (0)