| 6717 | model(Fun const& fun) : fun(fun) {} |
| 6718 | |
| 6719 | model<Fun>* clone() const override { return new model<Fun>(*this); } |
| 6720 | |
| 6721 | void call(Chronometer meter) const override { |
| 6722 | call(meter, is_callable<Fun(Chronometer)>()); |
no outgoing calls
no test coverage detected