We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f83bf4 commit 1c7cda9Copy full SHA for 1c7cda9
src/passes/Precompute.cpp
@@ -829,7 +829,8 @@ struct Precompute
829
}
830
831
auto* child = stack[index];
832
- for (auto** currChild : ChildIterator(stack[index - 1]).children) {
+ auto childIterator = ChildIterator(stack[index - 1]);
833
+ for (auto** currChild : childIterator.children) {
834
if (*currChild == child) {
835
return currChild;
836
0 commit comments