We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Clone::clone()
1 parent db1a26f commit 914b67aCopy full SHA for 914b67a
src/grid/ntv2/mod.rs
@@ -89,7 +89,7 @@ impl Ntv2Grid {
89
current_grid_id = grid_id.clone();
90
91
if let Some(children) = self.lookup_table.get(¤t_grid_id) {
92
- queue = children.clone();
+ queue.clone_from(children);
93
} else {
94
// If we get here it means the current_parent_id has no children and we've found the grid
95
break;
0 commit comments