mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-03 21:49:32 +01:00 
			
		
		
		
	Increased int size for timers to avoid truncations
This commit is contained in:
		@@ -9,6 +9,7 @@
 | 
			
		||||
#include "catch_timer.h"
 | 
			
		||||
 | 
			
		||||
#include <chrono>
 | 
			
		||||
#include <iostream>
 | 
			
		||||
 | 
			
		||||
namespace Catch {
 | 
			
		||||
 | 
			
		||||
@@ -45,11 +46,11 @@ namespace Catch {
 | 
			
		||||
    void Timer::start() {
 | 
			
		||||
       m_nanoseconds = getCurrentNanosecondsSinceEpoch();
 | 
			
		||||
    }
 | 
			
		||||
    auto Timer::getElapsedNanoseconds() const -> unsigned int {
 | 
			
		||||
        return static_cast<unsigned int>(getCurrentNanosecondsSinceEpoch() - m_nanoseconds);
 | 
			
		||||
    auto Timer::getElapsedNanoseconds() const -> uint64_t {
 | 
			
		||||
        return getCurrentNanosecondsSinceEpoch() - m_nanoseconds;
 | 
			
		||||
    }
 | 
			
		||||
    auto Timer::getElapsedMicroseconds() const -> unsigned int {
 | 
			
		||||
        return static_cast<unsigned int>(getElapsedNanoseconds()/1000);
 | 
			
		||||
    auto Timer::getElapsedMicroseconds() const -> uint64_t {
 | 
			
		||||
        return getElapsedNanoseconds()/1000;
 | 
			
		||||
    }
 | 
			
		||||
    auto Timer::getElapsedMilliseconds() const -> unsigned int {
 | 
			
		||||
        return static_cast<unsigned int>(getElapsedMicroseconds()/1000);
 | 
			
		||||
 
 | 
			
		||||
@@ -19,8 +19,8 @@ namespace Catch {
 | 
			
		||||
        uint64_t m_nanoseconds = 0;
 | 
			
		||||
    public:
 | 
			
		||||
        void start();
 | 
			
		||||
        auto getElapsedNanoseconds() const -> unsigned int;
 | 
			
		||||
        auto getElapsedMicroseconds() const -> unsigned int;
 | 
			
		||||
        auto getElapsedNanoseconds() const -> uint64_t;
 | 
			
		||||
        auto getElapsedMicroseconds() const -> uint64_t;
 | 
			
		||||
        auto getElapsedMilliseconds() const -> unsigned int;
 | 
			
		||||
        auto getElapsedSeconds() const -> double;
 | 
			
		||||
    };
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user