diff --git a/include/internal/catch_timer.h b/include/internal/catch_timer.h index fb61846c..607aa6bb 100644 --- a/include/internal/catch_timer.h +++ b/include/internal/catch_timer.h @@ -10,15 +10,20 @@ #include "catch_platform.h" -#include +#ifdef _MSC_VER namespace Catch { -#ifdef _MSC_VER typedef unsigned long long UInt64; +} #else +#include +namespace Catch { typedef uint64_t UInt64; +} #endif + +namespace Catch { class Timer { public: Timer() : m_ticks( 0 ) {}