Fix compile error

This commit is contained in:
Kawe Mazidjatari 2022-03-27 14:07:22 +02:00
parent 6f268c0978
commit 0c766266f1

View File

@ -13,7 +13,7 @@ inline uint64_t Plat_Rdtsc()
return (uint64_t)__rdtsc();
#elif defined( _WIN32 )
#if defined( _MSC_VER ) && ( _MSC_VER >= 1400 )
return (uint64)__rdtsc();
return (uint64_t)__rdtsc();
#else
__asm rdtsc;
__asm ret;