Skip to content

Commit

Permalink
add virtual destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
defiantnerd committed Jun 8, 2024
1 parent 75af134 commit 434a51c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/detail/vst3/aravst3.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

Expand Down

0 comments on commit 434a51c

Please sign in to comment.