mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
Mark Vst{2,3}Sockets as final
Since we're calling a virtual method during the destructor.
This commit is contained in:
@@ -325,7 +325,7 @@ class Vst2EventHandler : public AdHocSocketHandler<Thread> {
|
|||||||
* should be `std::jthread` and on the Wine side this should be `Win32Thread`.
|
* should be `std::jthread` and on the Wine side this should be `Win32Thread`.
|
||||||
*/
|
*/
|
||||||
template <typename Thread>
|
template <typename Thread>
|
||||||
class Vst2Sockets : public Sockets {
|
class Vst2Sockets final : public Sockets {
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* Sets up the sockets using the specified base directory. The sockets won't
|
* Sets up the sockets using the specified base directory. The sockets won't
|
||||||
|
|||||||
@@ -294,7 +294,7 @@ class Vst3MessageHandler : public AdHocSocketHandler<Thread> {
|
|||||||
* should be `std::jthread` and on the Wine side this should be `Win32Thread`.
|
* should be `std::jthread` and on the Wine side this should be `Win32Thread`.
|
||||||
*/
|
*/
|
||||||
template <typename Thread>
|
template <typename Thread>
|
||||||
class Vst3Sockets : public Sockets {
|
class Vst3Sockets final : public Sockets {
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* Sets up the sockets using the specified base directory. The sockets won't
|
* Sets up the sockets using the specified base directory. The sockets won't
|
||||||
|
|||||||
Reference in New Issue
Block a user