summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/atomic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/atomic.h b/src/common/atomic.h
index 518d2e6ab..0d15d50d7 100644
--- a/src/common/atomic.h
+++ b/src/common/atomic.h
@@ -104,7 +104,7 @@ forceinline volatile int64 InterlockedExchange64(volatile int64 *target, int64 v
// The __sync functions are available on x86 or ARMv6+
#if !defined(__x86_64__) && !defined(__i386__) \
&& ( !defined(__ARM_ARCH_VERSION__) || __ARM_ARCH_VERSION__ < 6 )
-#error Your Target Platfrom is not supported
+//#error Your Target Platfrom is not supported
#endif
static forceinline int64 InterlockedExchangeAdd64(volatile int64 *addend, int64 increment){