| 63 | |
| 64 | struct invocable_wrapper { |
| 65 | invocable_wrapper(): wrapped_(0) {} |
| 66 | invocable_wrapper(const invocable_wrapper& w): wrapped_(&w.wrapped_->clone()) {} |
| 67 | invocable_wrapper& operator=(const invocable_wrapper& that) { |
| 68 | invocable_wrapper newthis(that); |