mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-06 19:40:10 +02:00
Add explicit virtual default destructors
We need to silence the warning about this because Steinberg doesn't declare their base class destructors as virtual (because of Windows ABI compatibility issues). But we can still do it inside of yabridge to have at least a bit more safety.
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
*/
|
||||
class DefaultDataConverter {
|
||||
public:
|
||||
virtual ~DefaultDataConverter() noexcept;
|
||||
virtual ~DefaultDataConverter() noexcept = default;
|
||||
|
||||
/**
|
||||
* Read data from the `data` void pointer into a an `Vst2Event::Payload`
|
||||
|
||||
Reference in New Issue
Block a user