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

Warnings: Add warning-wrangling header

This commit is contained in:
reuk 2020-03-21 16:07:27 +00:00
parent 175644e8c1
commit 5f348c3040
93 changed files with 581 additions and 903 deletions

View file

@ -39,10 +39,7 @@
#elif JUCE_WINDOWS
// get rid of some warnings in Window's own headers
#ifdef JUCE_MSVC
#pragma warning (push)
#pragma warning (disable : 4458)
#endif
JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4458)
#if JUCE_MINGW && JUCE_USE_DIRECTWRITE
#warning "DirectWrite not currently implemented with mingw..."
@ -65,9 +62,7 @@
#include <unordered_map>
#ifdef JUCE_MSVC
#pragma warning (pop)
#endif
JUCE_END_IGNORE_WARNINGS_MSVC
#elif JUCE_IOS
#import <QuartzCore/QuartzCore.h>