| 6650 | template <typename Fun> |
| 6651 | struct model : public callable { |
| 6652 | model(Fun&& fun) : fun(std::move(fun)) {} |
| 6653 | model(Fun const& fun) : fun(fun) {} |
| 6654 | |
| 6655 | model<Fun>* clone() const override { return new model<Fun>(*this); } |
nothing calls this directly
no outgoing calls
no test coverage detected