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 ea4d9e4 commit 76d1ac3Copy full SHA for 76d1ac3
src/passes/Precompute.cpp
@@ -858,7 +858,8 @@ struct Precompute
858
}
859
860
auto* child = stack[index];
861
- for (auto** currChild : ChildIterator(stack[index - 1]).children) {
+ auto childIterator = ChildIterator(stack[index - 1]);
862
+ for (auto** currChild : childIterator.children) {
863
if (*currChild == child) {
864
return currChild;
865
0 commit comments