| 113 | |
| 114 | template<class F, class A> |
| 115 | void |
| 116 | dispatch(F&& f, A const& a) |
| 117 | { |
| 118 | ++sp_->info_.dispatch; |
| 119 | ++sp_->info_.total; |
| 120 | sp_->ex.dispatch( |
| 121 | std::forward<F>(f), a); |
| 122 | } |
| 123 | |
| 124 | template<class F, class A> |
| 125 | void |
nothing calls this directly
no outgoing calls
no test coverage detected