From 057bb262ddb45f762ab1cc08da6ac44e74b65c04 Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 11 Jan 2018 08:45:08 +0000 Subject: [PATCH] Enabled std::atomic for Android --- modules/juce_core/system/juce_CompilerSupport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/system/juce_CompilerSupport.h b/modules/juce_core/system/juce_CompilerSupport.h index 90d3e116f1..ef75903784 100644 --- a/modules/juce_core/system/juce_CompilerSupport.h +++ b/modules/juce_core/system/juce_CompilerSupport.h @@ -124,7 +124,7 @@ //============================================================================== #if JUCE_ANDROID - #define JUCE_ATOMIC_AVAILABLE 0 + #define JUCE_ATOMIC_AVAILABLE 1 #elif defined(_LIBCPP_VERSION) #define JUCE_ATOMIC_AVAILABLE (_LIBCPP_VERSION >= 3700) #elif defined (__GLIBCXX__)