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

Avoided some warnings in the AU wrapper.

This commit is contained in:
jules 2012-10-02 11:03:43 +01:00
parent 35b9b9a317
commit 9b3501bfe4

View file

@ -36,7 +36,12 @@
#define JUCE_SUPPORT_CARBON 0
#endif
#include "../utility/juce_IncludeSystemHeaders.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wshorten-64-to-32"
#endif
include "../utility/juce_IncludeSystemHeaders.h"
#include <AudioUnit/AUCocoaUIView.h>
#include <AudioUnit/AudioUnit.h>
@ -71,6 +76,10 @@
class JuceAUView;
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#define JUCE_MAC_WINDOW_VISIBITY_BODGE 1
#include "../utility/juce_IncludeModuleHeaders.h"