mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 20:27:51 +00:00
applet: Make virtual destructor defaulted
This commit is contained in:
parent
e214e0fca4
commit
748807f130
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ namespace Applets {
|
||||||
|
|
||||||
class Applet {
|
class Applet {
|
||||||
public:
|
public:
|
||||||
virtual ~Applet() {}
|
virtual ~Applet() = default;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an instance of the Applet subclass identified by the parameter.
|
* Creates an instance of the Applet subclass identified by the parameter.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue