Misc: Swap LIKELY/UNLIKELY macros for attributes
This commit is contained in:
@ -484,7 +484,7 @@ u64 Threading::GetThreadTicksPerSecond()
|
||||
// On x86, despite what the MS documentation says, this basically appears to be rdtsc.
|
||||
// So, the frequency is our base clock speed (and stable regardless of power management).
|
||||
static u64 frequency = 0;
|
||||
if (UNLIKELY(frequency == 0))
|
||||
if (frequency == 0) [[unlikely]]
|
||||
{
|
||||
frequency = 1000000;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user