Browse Source

Fix _Atomic definition

pull/1592/head
Yann Diorcet 8 years ago
parent
commit
30cf64638a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common.h

+ 1
- 1
common.h View File

@@ -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 <stdatomic.h>
#endif


Loading…
Cancel
Save