| 436 | */ |
| 437 | template <typename Function, typename Allocator> |
| 438 | void dispatch(Function&& f, const Allocator& a) const |
| 439 | { |
| 440 | (void)a; |
| 441 | detail::non_const_lvalue<Function> f2(f); |
| 442 | static_cast<decay_t<Function>&&>(f2.value)(); |
| 443 | } |
| 444 | |
| 445 | /// Request the inline_or_executor to invoke the given function object. |
| 446 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected