Przeglądaj źródła

applet: Make virtual destructor defaulted

Lioncash 9 lat temu
rodzic
commit
6f71fb2954
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/core/hle/applets/applet.h

+ 1 - 1
src/core/hle/applets/applet.h

@@ -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.