diff options
author | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-31 02:52:05 +0400 |
---|---|---|
committer | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-31 02:52:05 +0400 |
commit | e5987983d56afc7fcac6f3dcae065ded8255c034 (patch) | |
tree | baaee70ac3620f7c95cf277d1290c52b9ade0005 /source | |
parent | 90119178c88a534d0a127921c9449d440a2da183 (diff) | |
download | kit-e5987983d56afc7fcac6f3dcae065ded8255c034.zip |
test
Diffstat (limited to 'source')
-rw-r--r-- | source/kit/atomic.win32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/kit/atomic.win32.c b/source/kit/atomic.win32.c index 9977955..368c0de 100644 --- a/source/kit/atomic.win32.c +++ b/source/kit/atomic.win32.c @@ -1,9 +1,9 @@ #include "atomic.h" #ifdef _MSC_VER -static_assert(sizeof(char) == 1); -static_assert(sizeof(short) == 2); -static_assert(sizeof(long) == 4); +static_assert(sizeof(char) == 1, "Wrong char size"); +static_assert(sizeof(short) == 2, "Wrong short size"); +static_assert(sizeof(long) == 4, "Wrong long size"); # include <intrin.h> |