From add0cf77e1a5ace0c5919eb896839e15fbfdba47 Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 8 Jun 2012 15:38:26 +0100 Subject: [PATCH] Avoided some c++11 nullptr problems with VC2011. --- modules/juce_core/system/juce_PlatformDefs.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/modules/juce_core/system/juce_PlatformDefs.h b/modules/juce_core/system/juce_PlatformDefs.h index 47d32b98db..08e71a3c58 100644 --- a/modules/juce_core/system/juce_PlatformDefs.h +++ b/modules/juce_core/system/juce_PlatformDefs.h @@ -302,11 +302,6 @@ namespace juce #endif #if defined (_MSC_VER) && _MSC_VER >= 1600 - #if _MSC_VER >= 1700 - #define JUCE_COMPILER_SUPPORTS_NOEXCEPT 1 - #else - #define JUCE_COMPILER_SUPPORTS_NOEXCEPT 0 - #endif #define JUCE_COMPILER_SUPPORTS_NULLPTR 1 #define JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS 1 #endif