2013-08-07 19:56:35 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 05/08/2013.
|
|
|
|
* Copyright 2013 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "catch_timer.h"
|
|
|
|
|
2017-04-25 13:24:34 +02:00
|
|
|
#include <chrono>
|
2013-08-07 19:56:35 +02:00
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
2017-08-04 13:22:16 +02:00
|
|
|
auto getCurrentNanosecondsSinceEpoch() -> uint64_t {
|
|
|
|
return std::chrono::duration_cast<std::chrono::nanoseconds>( std::chrono::high_resolution_clock::now().time_since_epoch() ).count();
|
2013-08-07 19:56:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Catch
|