mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
Get the tuple order right
This commit is contained in:
parent
39ce915157
commit
50dbfd5d2e
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ impl Instance {
|
||||||
do_clone(uncloned_child, cloned_parent, reference_map);
|
do_clone(uncloned_child, cloned_parent, reference_map);
|
||||||
|
|
||||||
for uncloned_child in uncloned_children.iter() {
|
for uncloned_child in uncloned_children.iter() {
|
||||||
queue.push_back((*uncloned_child, cloned_parent))
|
queue.push_back((cloned_parent, *uncloned_child))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue