1
0
Fork 0
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:
reuk 2024-05-07 18:34:10 +01:00
parent 72c7fd3070
commit 78521395f2
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
3 changed files with 10 additions and 3 deletions

View file

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

View file

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

View file

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