From 01bd20c30ae0edb3afd22ea48454b7893ecd3697 Mon Sep 17 00:00:00 2001 From: Marcos Slomp Date: Mon, 9 Mar 2026 13:24:08 -0700 Subject: [PATCH] Windows x64 vs ARM opsie --- public/client/TracyProfiler.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/client/TracyProfiler.cpp b/public/client/TracyProfiler.cpp index a712803d..1175bc6f 100644 --- a/public/client/TracyProfiler.cpp +++ b/public/client/TracyProfiler.cpp @@ -282,7 +282,9 @@ static bool EnsureReadable( uintptr_t address ) return mapping && EnsureReadable( *mapping ); } #elif defined WIN32 +#ifdef TRACY_HAS_CNTVCT static_assert( TRACY_WINARM64_CNTVCT_EL0 == ARM64_CNTVCT_EL0, "ARM64_CNTVCT_EL0 mismatch" ); +#endif static bool EnsureReadable( uintptr_t address ) { MEMORY_BASIC_INFORMATION memInfo;