Error in commit 1f56562652a02bcd46e1b6a89668a2d30f9f31dc

Hi, this commit contains an error in juce_audio_plugin_client_Standalone.cpp

       #ifdef JucePlugin_PreferredChannelConfigurations
        constexpr StandalonePluginHolder::PluginInOuts channels[] { JucePlugin_PreferredChannelConfigurations };
        const Array<StandalonePluginHolder::PluginInOuts> channelConfig {channels, juce::numElementsInArray (channels));

should be

      const Array<StandalonePluginHolder::PluginInOuts> channelConfig {channels, juce::numElementsInArray (channels)};

Thanks for reporting: