Browse Source

AUv3: Suppress undeclared selector warning for supportsMPE when building against the 10.11 SDK

v6.1.6
ed 4 years ago
parent
commit
d52fb9ca26
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      modules/juce_audio_plugin_client/AU/juce_AUv3_Wrapper.mm

+ 3
- 0
modules/juce_audio_plugin_client/AU/juce_AUv3_Wrapper.mm View File

@@ -249,7 +249,10 @@ private:
//==============================================================================
addMethod (@selector (virtualMIDICableCount), getVirtualMIDICableCount, @encode (NSInteger), "@:");
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wundeclared-selector")
addMethod (@selector (supportsMPE), getSupportsMPE, @encode (BOOL), "@:");
JUCE_END_IGNORE_WARNINGS_GCC_LIKE
#if JUCE_AUV3_MIDI_OUTPUT_SUPPORTED
addMethod (@selector (MIDIOutputNames), getMIDIOutputNames, "@@:");


Loading…
Cancel
Save