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 738f8f9 commit 8ce18d1Copy full SHA for 8ce18d1
wf/multipipe.hpp
@@ -419,13 +419,13 @@ class MultiPipe: public ff::ff_pipeline
419
}
420
// Case 1.2 (at least two nested Matrioska)
421
else {
422
- last->cleanup_firstset(false);
423
auto first_set_last = last->getFirstSet();
+ last->remove_from_cleanuplist(first_set_last);
424
std::vector<ff::ff_node *> second_set_secondToLast;
425
for (size_t i=0; i<first_set_last.size(); i++) {
426
second_set_secondToLast.push_back(first_set_last[i]);
427
428
- secondToLast->change_secondset(second_set_secondToLast, true);
+ secondToLast->change_secondset(second_set_secondToLast, true, true);
429
delete last;
430
last = secondToLast;
431
secondToLast = nullptr;
0 commit comments