1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Avoided an unused variable warning

This commit is contained in:
jules 2016-04-27 17:09:00 +01:00
parent af9491caf9
commit d32c64d590

View file

@ -2012,6 +2012,8 @@ StringArray AudioUnitPluginFormat::searchPathsForPlugins (const FileSearchPath&,
|| desc.componentType == kAudioUnitType_Generator
|| desc.componentType == kAudioUnitType_Panner)
{
ignoreUnused (allowPluginsWhichRequireAsynchronousInstantiation);
#if JUCE_SUPPORTS_AUv3
bool isAUv3 = ((desc.componentFlags & kAudioComponentFlag_IsV3AudioUnit) != 0);