mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
AudioPluginInstance: Use inherited constructors directly
This commit is contained in:
parent
84bcf6965c
commit
44c552c614
1 changed files with 1 additions and 4 deletions
|
|
@ -167,10 +167,7 @@ protected:
|
||||||
const StringArray onStrings, offStrings;
|
const StringArray onStrings, offStrings;
|
||||||
};
|
};
|
||||||
|
|
||||||
AudioPluginInstance() = default;
|
using AudioProcessor::AudioProcessor;
|
||||||
AudioPluginInstance (const BusesProperties& ioLayouts) : AudioProcessor (ioLayouts) {}
|
|
||||||
template <size_t numLayouts>
|
|
||||||
AudioPluginInstance (const short channelLayoutList[numLayouts][2]) : AudioProcessor (channelLayoutList) {}
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// It's not safe to add a plain AudioProcessorParameter to an AudioPluginInstance.
|
// It's not safe to add a plain AudioProcessorParameter to an AudioPluginInstance.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue