| 659 | } |
| 660 | |
| 661 | bool anyNotDone() { |
| 662 | for (auto &stage : stages) { |
| 663 | if (!stage->prevFinished() || !stage->inputQueue.empty()) { |
| 664 | return true; |
| 665 | } |
| 666 | } |
| 667 | return false; |
| 668 | } |
| 669 | |
| 670 | void doAll() { |
| 671 | bool success = true; |
nothing calls this directly
no test coverage detected