1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Removed the OS X 10.5 and 10.6 deployment target options from the Projucer and enabled more C++11 features across all platforms

This commit is contained in:
Tom Poole 2018-04-17 18:46:55 +01:00
parent 45bfb9d095
commit c7c26fa9f0
33 changed files with 184 additions and 534 deletions

View file

@ -149,12 +149,10 @@ namespace juce
class ApplicationCommandManagerListener;
class DrawableButton;
#if JUCE_COMPILER_SUPPORTS_INITIALIZER_LISTS
class FlexBox;
#if JUCE_HAS_CONSTEXPR
class Grid;
#endif
#endif
}
#include "mouse/juce_MouseCursor.h"
@ -294,13 +292,10 @@ namespace juce
#include "native/juce_linux_X11.h"
#endif
// these classes are C++11-only
#if JUCE_COMPILER_SUPPORTS_INITIALIZER_LISTS
#include "layout/juce_FlexItem.h"
#include "layout/juce_FlexBox.h"
#include "layout/juce_FlexItem.h"
#include "layout/juce_FlexBox.h"
#if JUCE_HAS_CONSTEXPR
#include "layout/juce_GridItem.h"
#include "layout/juce_Grid.h"
#endif
#if JUCE_HAS_CONSTEXPR
#include "layout/juce_GridItem.h"
#include "layout/juce_Grid.h"
#endif