| 33 | }); |
| 34 | |
| 35 | struct dummy_task { |
| 36 | void operator()() const noexcept { |
| 37 | std::cout << "A dummy task is being executed on thread_id " << std::this_thread::get_id() << std::endl; |
| 38 | } |
| 39 | }; |
| 40 | |
| 41 | threads.emplace_back([manual_executor] { |
| 42 | std::vector<dummy_task> tasks(20); |
nothing calls this directly
no outgoing calls
no test coverage detected