From 30cf64638a6f60ea4d409533fcd73983aa66d971 Mon Sep 17 00:00:00 2001 From: Yann Diorcet Date: Mon, 4 Jun 2018 10:01:10 +0200 Subject: [PATCH] Fix _Atomic definition --- common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.h b/common.h index 123e3dee7..3385e449c 100644 --- a/common.h +++ b/common.h @@ -651,7 +651,7 @@ __declspec(dllimport) int __cdecl omp_get_num_procs(void); #endif #if (__STDC_VERSION__ >= 201112L) #ifndef _Atomic -#define _Atomic volatile +#define _Atomic(x) volatile x #endif #include #endif