| 6655 | model(Fun const& fun) : fun(fun) {} |
| 6656 | |
| 6657 | model<Fun>* clone() const override { return new model<Fun>(*this); } |
| 6658 | |
| 6659 | void call(Chronometer meter) const override { |
| 6660 | call(meter, is_callable<Fun(Chronometer)>()); |
no outgoing calls
no test coverage detected