From 69a50b04c1d52dc0653ef829b5112e41751e0d7b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 26 Apr 2018 16:12:52 +0200 Subject: [PATCH] Really don't care about cpu id. --- client/TracyProfiler.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.hpp b/client/TracyProfiler.hpp index 66f947b8..a8853aac 100644 --- a/client/TracyProfiler.hpp +++ b/client/TracyProfiler.hpp @@ -95,7 +95,7 @@ public: asm volatile ( "mrs %0, cntvct_el0" : "=r" (t) ); return t; # elif defined _MSC_VER || defined __CYGWIN__ - static unsigned int dontcare; + unsigned int dontcare; const auto t = int64_t( __rdtscp( &dontcare ) ); return t; # elif defined __i386 || defined _M_IX86 || defined __x86_64__ || defined _M_X64