diff --git a/examples/Plugins/ReaperEmbeddedViewPluginDemo.h b/examples/Plugins/ReaperEmbeddedViewPluginDemo.h index f18a8b9031..30521798c0 100644 --- a/examples/Plugins/ReaperEmbeddedViewPluginDemo.h +++ b/examples/Plugins/ReaperEmbeddedViewPluginDemo.h @@ -61,14 +61,20 @@ #pragma once +JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wshadow-field-in-constructor", + "-Wnon-virtual-dtor") + #include #include #include +JUCE_END_IGNORE_WARNINGS_GCC_LIKE + namespace reaper { JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wzero-as-null-pointer-constant", "-Wunused-parameter") + JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4100) using namespace Steinberg; using INT_PTR = pointer_sized_int; @@ -85,6 +91,7 @@ namespace reaper DEF_CLASS_IID (IReaperHostApplication) DEF_CLASS_IID (IReaperUIEmbedInterface) + JUCE_END_IGNORE_WARNINGS_MSVC JUCE_END_IGNORE_WARNINGS_GCC_LIKE }