mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
AudioProcessor: Return unique_ptr from createPluginFilterOfType
This commit is contained in:
parent
403ba3007f
commit
d6f30304f0
8 changed files with 12 additions and 12 deletions
|
|
@ -721,7 +721,7 @@ public:
|
|||
|
||||
static std::unique_ptr<AudioProcessor> createProcessorInstance()
|
||||
{
|
||||
auto result = rawToUniquePtr (createPluginFilterOfType (AudioProcessor::wrapperType_LV2));
|
||||
auto result = createPluginFilterOfType (AudioProcessor::wrapperType_LV2);
|
||||
|
||||
#if defined (JucePlugin_PreferredChannelConfigurations)
|
||||
constexpr short channelConfigurations[][2] { JucePlugin_PreferredChannelConfigurations };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue