1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00

Avoided some c++11 nullptr problems with VC2011.

This commit is contained in:
jules 2012-06-08 15:38:26 +01:00
parent 0e6bbcc55c
commit add0cf77e1

View file

@ -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