We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad7323a commit f2ab76dCopy full SHA for f2ab76d
vendor/bela.lock
@@ -1 +1 @@
1
-https://github.com/fcharlie/bela/tree/60bd8d2fa51ed281b8d9f0fbbcc7af65ff920453
+https://github.com/fcharlie/bela/tree/47836da3a358265302f6618180ae6c83aedfca10
vendor/bela/src/belahash/blake3/blake3_dispatch.c
@@ -32,9 +32,9 @@
32
#define ATOMIC_LOAD(x) x
33
#define ATOMIC_STORE(x, y) x = y
34
#elif defined(_MSC_VER)
35
-#define ATOMIC_INT LONG
36
-#define ATOMIC_LOAD(x) InterlockedOr(&x, 0)
37
-#define ATOMIC_STORE(x, y) InterlockedExchange(&x, y)
+#define ATOMIC_INT long
+#define ATOMIC_LOAD(x) _InterlockedOr(&x, 0)
+#define ATOMIC_STORE(x, y) _InterlockedExchange(&x, y)
38
#else
39
#define ATOMIC_INT int
40
0 commit comments