// Adapted from donated nonius code. #ifndef CATCH_TIMING_HPP_INCLUDED #define CATCH_TIMING_HPP_INCLUDED #include #include #include namespace Catch { namespace Benchmark { template struct Timing { Duration elapsed; Result result; int iterations; }; template using TimingOf = Timing, Detail::CompleteType_t>>; } // namespace Benchmark } // namespace Catch #endif // CATCH_TIMING_HPP_INCLUDED