Fix clippy warning

This commit is contained in:
Chris Tsang 2021-06-26 23:02:38 +08:00
parent a072b1f2f3
commit 394dfc07cc

View File

@ -193,11 +193,13 @@ where
break;
}
}
if same_l && r.is_some() {
last_r.push(r.unwrap());
if same_l {
if let Some(r) = r {
last_r.push(r);
continue;
}
}
}
if r.is_some() {
acc.push((l, vec![r.unwrap()]));
} else {