mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
AAX Client: Add more ignored warnings for Clang on Windows
This commit is contained in:
parent
72c7fd3070
commit
78521395f2
3 changed files with 10 additions and 3 deletions
|
|
@ -56,7 +56,9 @@ JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wdeprecated-declarations",
|
|||
"-Wtautological-overlap-compare",
|
||||
"-Wzero-as-null-pointer-constant",
|
||||
"-Wdeprecated-copy-with-user-provided-dtor",
|
||||
"-Wdeprecated")
|
||||
"-Wdeprecated",
|
||||
"-Wlanguage-extension-token",
|
||||
"-Wmicrosoft-enum-value")
|
||||
|
||||
#include <AAX_Version.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,11 @@ JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wdeprecated-declarations",
|
|||
"-Wzero-as-null-pointer-constant",
|
||||
"-Wfour-char-constants",
|
||||
"-Wdeprecated-copy-with-user-provided-dtor",
|
||||
"-Wdeprecated")
|
||||
"-Wdeprecated",
|
||||
"-Wlanguage-extension-token",
|
||||
"-Wmicrosoft-enum-value",
|
||||
"-Wmisleading-indentation",
|
||||
"-Wregister")
|
||||
JUCE_BEGIN_IGNORE_WARNINGS_MSVC (6001 6053 4996 5033 4068 4996 5272)
|
||||
|
||||
#include <Libs/AAXLibrary/source/AAX_CChunkDataParser.cpp>
|
||||
|
|
|
|||
|
|
@ -81,7 +81,8 @@ JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wconversion",
|
|||
"-Wunused-parameter",
|
||||
"-Wdeprecated-writable-strings",
|
||||
"-Wnon-virtual-dtor",
|
||||
"-Wzero-as-null-pointer-constant")
|
||||
"-Wzero-as-null-pointer-constant",
|
||||
"-Wlanguage-extension-token")
|
||||
JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4458)
|
||||
|
||||
#define VST_FORCE_DEPRECATED 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue