| 127 | |
| 128 | template<class callable_type, class... argument_types> |
| 129 | void post(callable_type&& callable, argument_types&&... arguments) { |
| 130 | return do_post<executor>(std::forward<callable_type>(callable), std::forward<argument_types>(arguments)...); |
| 131 | } |
| 132 | |
| 133 | template<class callable_type, class... argument_types> |
| 134 | auto submit(callable_type&& callable, argument_types&&... arguments) { |
nothing calls this directly
no outgoing calls
no test coverage detected