From c7db4bb7f531a21e70dfb692bb252769bce0b473 Mon Sep 17 00:00:00 2001 From: Timur Doumler Date: Wed, 17 Aug 2016 09:55:00 +0100 Subject: [PATCH] Avoided a compiler warning on OS X due to unused private fields in VSTPluginWindow. --- .../juce_audio_processors/format_types/juce_VSTPluginFormat.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp index cc571c91da..37bd1c15e7 100644 --- a/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp @@ -1874,6 +1874,8 @@ public: pluginProc = None; #elif JUCE_MAC + ignoreUnused (recursiveResize, pluginRefusesToResize, alreadyInside); + #if JUCE_SUPPORT_CARBON if (! plug.usesCocoaNSView) addAndMakeVisible (carbonWrapper = new CarbonWrapperComponent (*this));