AdvanceFunc
| 656 | |
| 657 | // AdvanceFunc |
| 658 | ProcessStep(std::unique_ptr<ProcessorStep> func_, std::vector<std::unique_ptr<QueueStage>> stages_) : func(std::move(func_)), stages(std::move(stages_)) { |
| 659 | } |
| 660 | |
| 661 | bool anyNotDone() { |
| 662 | for (auto &stage : stages) { |
nothing calls this directly
no outgoing calls
no test coverage detected