From b20141e90ea5a54ae0ea1ddf11c367ef56183912 Mon Sep 17 00:00:00 2001 From: hogliux Date: Thu, 26 Oct 2017 17:42:41 +0100 Subject: [PATCH] Fixed some documentation in JUCE Atomic class --- modules/juce_core/memory/juce_Atomic.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/juce_core/memory/juce_Atomic.h b/modules/juce_core/memory/juce_Atomic.h index c74e9f4002..78bb4ef99a 100644 --- a/modules/juce_core/memory/juce_Atomic.h +++ b/modules/juce_core/memory/juce_Atomic.h @@ -135,7 +135,9 @@ namespace juce //============================================================================== #ifndef DOXYGEN - // This method has been deprecated as there is no equivalent method in std::atomic. + /* This method has been deprecated as there is no equivalent method in + std::atomic. Use compareAndSetBool instead. + */ JUCE_DEPRECATED (Type compareAndSetValue (Type, Type) noexcept); #endif };