1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-31 03:00:05 +00:00

Fixed a compiler error which occured in gcc based compilers

This commit is contained in:
hogliux 2016-09-26 11:05:00 +01:00
parent 71de18554a
commit 3fb55ffd1f

View file

@ -768,7 +768,7 @@ public:
*/
template <int numLayouts>
BusesLayout getNextBestLayoutInLayoutList (const BusesLayout& layouts,
const short channelLayoutList[numLayouts][2])
const short (&channelLayoutList) [numLayouts][2])
{
return getNextBestLayoutInList (layouts, layoutListToArray (channelLayoutList));
}