/* * Created by Joachim on 16/04/2019. * Adapted from donated nonius code. * * Distributed under the Boost Software License, Version 1.0. (See accompanying * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ // Clocks #ifndef TWOBLUECUBES_CATCH_CLOCK_HPP_INCLUDED #define TWOBLUECUBES_CATCH_CLOCK_HPP_INCLUDED #include #include namespace Catch { namespace Benchmark { template using ClockDuration = typename Clock::duration; template using FloatDuration = std::chrono::duration; template using TimePoint = typename Clock::time_point; using default_clock = std::chrono::steady_clock; template struct now { TimePoint operator()() const { return Clock::now(); } }; using fp_seconds = std::chrono::duration>; } // namespace Benchmark } // namespace Catch #endif // TWOBLUECUBES_CATCH_CLOCK_HPP_INCLUDED