mirror of https://github.com/odrling/Aegisub
Add virtual destructor to SignalBase
Quashes a frequent warning
This commit is contained in:
parent
be64ea3f6e
commit
8a19a54178
|
@ -100,6 +100,7 @@ namespace detail {
|
|||
SignalBase& operator=(SignalBase const&) = delete;
|
||||
protected:
|
||||
SignalBase() = default;
|
||||
virtual ~SignalBase() {};
|
||||
/// @brief Notify a slot that it has been disconnected
|
||||
/// @param tok Token to disconnect
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue