applet: Make virtual destructor defaulted

This commit is contained in:
Lioncash 2016-12-07 17:04:14 -05:00
parent e214e0fca4
commit 748807f130

View file

@ -13,7 +13,7 @@ namespace Applets {
class Applet {
public:
virtual ~Applet() {}
virtual ~Applet() = default;
/**
* Creates an instance of the Applet subclass identified by the parameter.