| 6859 | namespace Detail { |
| 6860 | template <typename Clock, typename Fun> |
| 6861 | TimingOf<Clock, Fun, int> measure_one(Fun&& fun, int iters, std::false_type) { |
| 6862 | return Detail::measure<Clock>(fun, iters); |
| 6863 | } |
| 6864 | template <typename Clock, typename Fun> |
| 6865 | TimingOf<Clock, Fun, Chronometer> measure_one(Fun&& fun, int iters, std::true_type) { |
| 6866 | Detail::ChronometerModel<Clock> meter; |
nothing calls this directly
no test coverage detected