| 115 | */ |
| 116 | template<typename Char> |
| 117 | int WaitForAllProcesses(std::span<Process<Char>> processes) |
| 118 | { |
| 119 | return std::ranges::count_if(processes, [](auto const& process) |
| 120 | { |
| 121 | return process.WaitForExit() == 0; |
| 122 | }); |
| 123 | } |
nothing calls this directly
no test coverage detected