From 693ebab70683e489a272aa5963ae34cd174dc74b Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 10 Jun 2013 11:15:14 +0100 Subject: [PATCH] Avoided some MSVC warnings --- modules/juce_core/memory/juce_ScopedPointer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/memory/juce_ScopedPointer.h b/modules/juce_core/memory/juce_ScopedPointer.h index 5b292bce93..a531c04336 100644 --- a/modules/juce_core/memory/juce_ScopedPointer.h +++ b/modules/juce_core/memory/juce_ScopedPointer.h @@ -200,7 +200,7 @@ private: // (Required as an alternative to the overloaded & operator). const ScopedPointer* getAddress() const noexcept { return this; } - #if JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS || ! JUCE_MSVC // (MSVC can't deal with multiple copy constructors) + #if ! JUCE_MSVC // (MSVC can't deal with multiple copy constructors) /* The copy constructors are private to stop people accidentally copying a const ScopedPointer (the compiler would let you do so by implicitly casting the source to its raw object pointer).