Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2021-09-03 19:51:46 +0300
committerHenrik Gramner <henrik@gramner.com>2021-09-03 19:55:00 +0300
commit51a4272f0cb4f59752fbe53e1ef1dfeec26b58ec (patch)
treef7808b674e1a9900b06ce826c4e050ea704e4b8c /include
parent2d633652f81be04d22a68f19e8430a64af3e045b (diff)
msvc: Remove unnecessary alignment directive for atomics
Diffstat (limited to 'include')
-rw-r--r--include/compat/msvc/stdatomic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/compat/msvc/stdatomic.h b/include/compat/msvc/stdatomic.h
index b739d6a..4154da0 100644
--- a/include/compat/msvc/stdatomic.h
+++ b/include/compat/msvc/stdatomic.h
@@ -41,8 +41,8 @@
#include "common/attributes.h"
-typedef volatile LONG __declspec(align(32)) atomic_int;
-typedef volatile ULONG __declspec(align(32)) atomic_uint;
+typedef volatile LONG atomic_int;
+typedef volatile ULONG atomic_uint;
typedef enum {
memory_order_relaxed,