| 123 | |
| 124 | template<class F, class A> |
| 125 | void |
| 126 | post(F&& f, A const& a) |
| 127 | { |
| 128 | ++sp_->info_.post; |
| 129 | ++sp_->info_.total; |
| 130 | sp_->ex.post( |
| 131 | std::forward<F>(f), a); |
| 132 | } |
| 133 | |
| 134 | template<class F, class A> |
| 135 | void |
nothing calls this directly
no outgoing calls
no test coverage detected