Fix check for HAVE_GCC_ATOMIC_BUILTINS

This commit is contained in:
Lymia Aluysia
2017-01-17 23:36:27 -06:00
parent a1660983b6
commit 24ba3ab28a
3 changed files with 1 additions and 109 deletions
+1 -1
View File
@@ -54,7 +54,7 @@
#define HAVE_FAST_ATOMIC
// ----------------------------------------------------------------------------- : AtomicInt : GCC
#elif defined(__GNUC__) && !defined(HAVE_GCC_ATOMIC_BUILTINS)
#elif defined(__GNUC__)
/// An integer which is equivalent to an AtomicInt, but which doesn't support attomic operations
typedef unsigned int AtomicIntEquiv;