From c6e5738d54f400b8dc02d6b43cc1beb6edfe5e82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Tue, 25 Apr 2017 11:25:49 +0200 Subject: [PATCH] Remove c++98 backcompat from timer --- include/internal/catch_timer.h | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/include/internal/catch_timer.h b/include/internal/catch_timer.h index 607aa6bb..1d690160 100644 --- a/include/internal/catch_timer.h +++ b/include/internal/catch_timer.h @@ -10,17 +10,7 @@ #include "catch_platform.h" -#ifdef _MSC_VER - -namespace Catch { - typedef unsigned long long UInt64; -} -#else #include -namespace Catch { - typedef uint64_t UInt64; -} -#endif namespace Catch { @@ -33,7 +23,7 @@ namespace Catch { double getElapsedSeconds() const; private: - UInt64 m_ticks; + uint64_t m_ticks; }; } // namespace Catch