all clippy 1.67 fixes

This commit is contained in:
2023-01-26 23:31:09 +01:00
parent 81ba7c7e79
commit 4e361e4421
6 changed files with 38 additions and 55 deletions

View File

@ -49,7 +49,7 @@ fn main() {
let jh0 = thread::spawn(move || {
let data = r0.recv().unwrap();
let raw = data.get_data();
println!("Received data {:?}", raw);
println!("Received data {raw:?}");
});
let jh1 = thread::spawn(|| {});
jh0.join().unwrap();