applet: Make virtual destructor defaulted

master
Lioncash 2016-12-07 17:04:14 +07:00
parent d3f4fd1777
commit 6f71fb2954
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.