| 690 | struct loop_task |
| 691 | { |
| 692 | void operator()() |
| 693 | { |
| 694 | for (T i = start; i < end; ++i) |
| 695 | (*loop_ptr)(i); |
| 696 | } |
| 697 | |
| 698 | std::shared_ptr<std::decay_t<F>> loop_ptr; |
| 699 | T start; |
nothing calls this directly
no outgoing calls
no test coverage detected