Repair serious error in skeleton indexing (double pop)

This commit is contained in:
Tony Garnock-Jones 2021-12-09 18:52:58 +01:00
parent 58daa8c981
commit fdf765557e
1 changed files with 0 additions and 1 deletions

View File

@ -192,7 +192,6 @@ class Node {
[popCount, nextNode] = walkNode(nextNode, popCount, stepIndex, member);
path.pop();
});
path.pop();
return [popCount + 1, nextNode];
}
}