[*] Clang build fix

This commit is contained in:
Reece Wilson 2024-03-21 00:34:00 +00:00
parent 9dcb7ca673
commit 779e884caf

View File

@ -432,7 +432,8 @@ inline auline T AuAtomicUtils<T>::Load(T *in)
{
return (T)AuAtomicUtils<AuUInt>::Load((AuUInt *)in);
}
else
{
#if defined(AURORA_COMPILER_MSVC) && (defined(AURORA_ARCH_X64) || defined(AURORA_ARCH_X86))
const auto read = *in;
::_ReadWriteBarrier();
@ -477,7 +478,7 @@ inline auline T AuAtomicUtils<T>::Load(T *in)
else if constexpr (AuIsSame_v<AuInt64, T>)
{
return ATOMIC_PREFIX_HAX(atomic_load)((_Atomic(AuInt64) *)(in), __ATOMIC_ACQUIRE);
}
}
else
{
static_assert(AuIsVoid_v<T>, "T");
@ -486,6 +487,7 @@ inline auline T AuAtomicUtils<T>::Load(T *in)
return __sync_val_compare_and_swap(*in, 0, 0);
#endif
#endif
}
}
template <class T>
@ -496,7 +498,8 @@ inline auline void AuAtomicUtils<T>::Store(T *in, T val)
AuAtomicUtils<AuUInt>::Store((AuUInt *)in, (AuUInt)val);
return;
}
else
{
#if defined(AURORA_COMPILER_MSVC) && (defined(AURORA_ARCH_X64) || defined(AURORA_ARCH_X86))
*in = val;
#elif defined(AURORA_COMPILER_MSVC)
@ -582,6 +585,7 @@ inline auline void AuAtomicUtils<T>::Store(T *in, T val)
__sync_synchronize();
#endif
#endif
}
}
template <>