Fix compiler warning in VST module
Missing virtual destructor
This commit is contained in:
parent
b53c1caf2a
commit
e14b281443
1 changed files with 1 additions and 0 deletions
|
@ -12,6 +12,7 @@ class VstComponentHandler : public IComponentHandler
|
|||
DECLARE_FUNKNOWN_METHODS
|
||||
public:
|
||||
VstComponentHandler() = default;
|
||||
virtual ~VstComponentHandler() = default;
|
||||
|
||||
async::Channel<PluginParamId, PluginParamValue> pluginParamChanged() const;
|
||||
async::Notification pluginParamsChanged() const;
|
||||
|
|
Loading…
Reference in a new issue