[*] remove verbose "!= 0"

This commit is contained in:
Reece Wilson 2023-05-31 04:38:05 +01:00
parent f92a19621a
commit 055b149e11

View File

@ -110,7 +110,7 @@ namespace Aurora::Threading::Primitives
{
for (AU_ITERATE_N(i, 8)) SMPPause();
if (::_interlockedbittestandset((volatile LONG*)&this->state_, 0) != 0)
if (::_interlockedbittestandset((volatile LONG*)&this->state_, 0))
{
return true;
}