mirror of
https://github.com/serde-rs/serde.git
synced 2025-10-02 07:21:12 +00:00
Fix unneeded clone from PR #1917
This commit is contained in:
parent
60e08f9545
commit
34f4b68f77
@ -2121,8 +2121,7 @@ fn deserialize_identifier(
|
||||
(None, None, None, None)
|
||||
};
|
||||
|
||||
let (fallthrough_arm, fallthrough_borrowed_arm) = if let Some(fallthrough) = fallthrough.clone()
|
||||
{
|
||||
let (fallthrough_arm, fallthrough_borrowed_arm) = if let Some(fallthrough) = fallthrough {
|
||||
fallthrough
|
||||
} else if is_variant {
|
||||
let fallthrough = quote! {
|
||||
|
Loading…
x
Reference in New Issue
Block a user