From c42428d067cc8791b95fab82fb3b12e2b1261930 Mon Sep 17 00:00:00 2001 From: jules Date: Sun, 28 Jun 2015 13:41:09 +0100 Subject: [PATCH] Made JUCE_DELETED_FUNCTION available on VC2013 --- 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 dbed46cf54..4b2b35704a 100644 --- a/modules/juce_core/system/juce_CompilerSupport.h +++ b/modules/juce_core/system/juce_CompilerSupport.h @@ -113,11 +113,11 @@ #if _MSC_VER >= 1800 #define JUCE_COMPILER_SUPPORTS_INITIALIZER_LISTS 1 #define JUCE_COMPILER_SUPPORTS_VARIADIC_TEMPLATES 1 + #define JUCE_DELETED_FUNCTION = delete #endif #if _MSC_VER >= 1900 #define JUCE_COMPILER_SUPPORTS_NOEXCEPT 1 - #define JUCE_DELETED_FUNCTION = delete #endif #endif