Chore: Clippy fixes to match new MSRV.

This commit is contained in:
Kyle Simpson
2023-05-21 14:25:13 +01:00
parent 1bf17d128e
commit 9fa063ff0e
10 changed files with 17 additions and 34 deletions

View File

@@ -156,9 +156,7 @@ impl Compressed {
.await??;
// If success, guaranteed to be Parsed
let mut parsed = if let LiveInput::Parsed(parsed) = promoted {
parsed
} else {
let LiveInput::Parsed(mut parsed) = promoted else {
unreachable!()
};