| 1701 | template <typename Fun, |
| 1702 | std::enable_if_t<!is_related_v<Fun, BenchmarkFunction>, int> = 0> |
| 1703 | BenchmarkFunction(Fun&& fun) |
| 1704 | : f(new model<std::decay_t<Fun>>(CATCH_FORWARD(fun))) {} |
| 1705 | |
| 1706 | BenchmarkFunction( BenchmarkFunction&& that ) noexcept: |
| 1707 | f( CATCH_MOVE( that.f ) ) {} |
nothing calls this directly
no outgoing calls
no test coverage detected