From: Bennet Bleßmann Date: Sat, 6 Jul 2024 11:03:14 +0000 (+0200) Subject: clippy: use clone_from rather than clone X-Git-Tag: v0.10.0~127^2~30 X-Git-Url: https://git.sagredo.dev/?a=commitdiff_plain;h=1b16c6c73f265fab90b76a1988e5a4a3d20d3d80;p=scryer-prolog.git clippy: use clone_from rather than clone --- diff --git a/src/machine/lib_machine.rs b/src/machine/lib_machine.rs index 938a5597..27909c8a 100644 --- a/src/machine/lib_machine.rs +++ b/src/machine/lib_machine.rs @@ -191,7 +191,7 @@ impl Machine { printer.quoted = true; printer.max_depth = 1000; // NOTE: set this to 0 for unbounded depth printer.double_quotes = true; - printer.var_names = var_names.clone(); + printer.var_names.clone_from(&var_names); let outputter = printer.print(); @@ -488,12 +488,8 @@ mod tests { } else if let Some(result) = block.strip_prefix("result") { i += 1; if let Some(Ok(ref last_result)) = last_result { - println!( - "\n\n=====Result No. {}=======\n{}\n===============", - i, - last_result.to_string().trim() - ); - assert_eq!(last_result.to_string().trim(), result.to_string().trim(),) + println!("\n\n=====Result No. {i}=======\n{last_result}\n==============="); + assert_eq!(last_result.to_string(), result.to_string().trim(),) } } }