| 32 | |
| 33 | |
| 34 | int main() |
| 35 | { |
| 36 | std::println("\t{}", FormatLine(std::views::iota(1, 10))); |
| 37 | int threadNum = 9; |
| 38 | std::vector<std::jthread> threads; |
| 39 | |
| 40 | for (int i = 1; i <= threadNum; ++i) |
| 41 | threads.emplace_back(Work, i); |
| 42 | return 0; |
| 43 | } |
nothing calls this directly
no test coverage detected