Address various clippy lints, improve comments

This commit is contained in:
Paul Hauner
2019-04-29 14:04:52 +10:00
parent 52695c29e8
commit a90bbbfd82
4 changed files with 35 additions and 27 deletions

View File

@@ -149,7 +149,6 @@ impl BTreeOverlay {
chunks.append(&mut self.leaf_node_chunks());
(0..self.num_internal_nodes())
.into_iter()
.map(|parent| {
let children = children(parent);
(chunks[parent], (chunks[children.0], chunks[children.1]))