diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-09-29 16:51:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-29 16:51:56 +0200 |
| commit | 71c96cc7d5cf4bdb21d75c48e616f8fb195b9ee1 (patch) | |
| tree | f3e5e2992bc3d143616a636880a9e7cde2b38d6a /compiler/rustc_pattern_analysis/src | |
| parent | af1e24b94614be8c08a0edd6d55de4e45b6662b3 (diff) | |
| parent | 71cd918dc78c84d41bb89c2fc8effcfd000f4e3e (diff) | |
| download | rust-71c96cc7d5cf4bdb21d75c48e616f8fb195b9ee1.tar.gz rust-71c96cc7d5cf4bdb21d75c48e616f8fb195b9ee1.zip | |
Rollup merge of #131014 - matthiaskrgr:no_clone_on_copy, r=chenyukang
cleanup: don't clone types that are Copy
Diffstat (limited to 'compiler/rustc_pattern_analysis/src')
| -rw-r--r-- | compiler/rustc_pattern_analysis/src/constructor.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/rustc_pattern_analysis/src/constructor.rs b/compiler/rustc_pattern_analysis/src/constructor.rs index 3cb7576154f..8fce4266345 100644 --- a/compiler/rustc_pattern_analysis/src/constructor.rs +++ b/compiler/rustc_pattern_analysis/src/constructor.rs @@ -735,10 +735,10 @@ impl<Cx: PatCx> Clone for Constructor<Cx> { Constructor::UnionField => Constructor::UnionField, Constructor::Bool(b) => Constructor::Bool(*b), Constructor::IntRange(range) => Constructor::IntRange(*range), - Constructor::F16Range(lo, hi, end) => Constructor::F16Range(lo.clone(), *hi, *end), - Constructor::F32Range(lo, hi, end) => Constructor::F32Range(lo.clone(), *hi, *end), - Constructor::F64Range(lo, hi, end) => Constructor::F64Range(lo.clone(), *hi, *end), - Constructor::F128Range(lo, hi, end) => Constructor::F128Range(lo.clone(), *hi, *end), + Constructor::F16Range(lo, hi, end) => Constructor::F16Range(*lo, *hi, *end), + Constructor::F32Range(lo, hi, end) => Constructor::F32Range(*lo, *hi, *end), + Constructor::F64Range(lo, hi, end) => Constructor::F64Range(*lo, *hi, *end), + Constructor::F128Range(lo, hi, end) => Constructor::F128Range(*lo, *hi, *end), Constructor::Str(value) => Constructor::Str(value.clone()), Constructor::Opaque(inner) => Constructor::Opaque(inner.clone()), Constructor::Or => Constructor::Or, |
