From 3fb55ffd1f0b609680a1f038ae7caf24a7c2659f Mon Sep 17 00:00:00 2001 From: hogliux Date: Mon, 26 Sep 2016 11:05:00 +0100 Subject: [PATCH] Fixed a compiler error which occured in gcc based compilers --- modules/juce_audio_processors/processors/juce_AudioProcessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_processors/processors/juce_AudioProcessor.h b/modules/juce_audio_processors/processors/juce_AudioProcessor.h index ad84fcc760..d81bbbd86c 100644 --- a/modules/juce_audio_processors/processors/juce_AudioProcessor.h +++ b/modules/juce_audio_processors/processors/juce_AudioProcessor.h @@ -768,7 +768,7 @@ public: */ template BusesLayout getNextBestLayoutInLayoutList (const BusesLayout& layouts, - const short channelLayoutList[numLayouts][2]) + const short (&channelLayoutList) [numLayouts][2]) { return getNextBestLayoutInList (layouts, layoutListToArray (channelLayoutList)); }