Browse Source

applet: Make virtual destructor defaulted

nce_cpp
Lioncash 9 years ago
parent
commit
748807f130
  1. 2
      src/core/hle/applets/applet.h

2
src/core/hle/applets/applet.h

@ -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…
Cancel
Save