| 244 | // presence of task_group_context is defined automatically |
| 245 | template<typename F0, typename F1, typename... F> |
| 246 | void parallel_invoke(F0&& f0, F1&& f1, F&&... f) { |
| 247 | typedef typename internal::impl_selector<internal::false_type, F...>::type selector_type; |
| 248 | internal::parallel_invoke_impl(selector_type(), std::forward<F0>(f0), std::forward<F1>(f1), std::forward<F>(f)...); |
| 249 | } |
| 250 | |
| 251 | #else |
| 252 |
nothing calls this directly
no test coverage detected