| 12 | |
| 13 | template<class callable_type, class... argument_types> |
| 14 | void post(callable_type&& callable, argument_types&&... arguments) { |
| 15 | return do_post<concrete_executor_type>(std::forward<callable_type>(callable), std::forward<argument_types>(arguments)...); |
| 16 | } |
| 17 | |
| 18 | template<class callable_type, class... argument_types> |
| 19 | auto submit(callable_type&& callable, argument_types&&... arguments) { |
nothing calls this directly
no outgoing calls
no test coverage detected