From 434a51cc94ac894adcf359e5ba4a02b7acf575b9 Mon Sep 17 00:00:00 2001 From: defiantnerd <97224712+defiantnerd@users.noreply.github.com> Date: Sat, 8 Jun 2024 23:51:14 +0200 Subject: [PATCH] add virtual destructor --- src/detail/vst3/aravst3.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/detail/vst3/aravst3.h b/src/detail/vst3/aravst3.h index 1470fc10..68aaa7d0 100644 --- a/src/detail/vst3/aravst3.h +++ b/src/detail/vst3/aravst3.h @@ -38,7 +38,9 @@ class IMainFactory : public Steinberg::FUnknown //! The returned ARAFactory must be equal to the ARAFactory provided by the associated //! IAudioProcessor class through its IPlugInEntryPoint. virtual ARAFactoryPtr PLUGIN_API getFactory() = 0; - virtual ~IMainFactory() {} + virtual ~IMainFactory() + { + } static const Steinberg::FUID iid; };