| 218 | /// will bind both free functions and pointers to member functions. |
| 219 | template <class R, class T> |
| 220 | work make_work(R (T::*f)(), T* t) { |
| 221 | return work_pmf0<R, T>(f, *t); |
| 222 | } |
| 223 | |
| 224 | template <class R, class T, class A> |
| 225 | work make_work(R (T::*f)(A), T* t, A a) { |
no outgoing calls