Fix win32 compile
This commit is contained in:
@@ -69,7 +69,7 @@ public:
|
||||
}
|
||||
static int64 AtomicRead(int64 const volatile* dst)
|
||||
{
|
||||
return _InterlockedCompareExchange64(dst, 0, 0);
|
||||
return _InterlockedCompareExchange64((int64 volatile*)dst, 0, 0);
|
||||
}
|
||||
static void AtomicStore(int32 volatile* dst, int32 value)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user