Explorar el Código

applet: Make virtual destructor defaulted

Lioncash hace 9 años
padre
commit
6f71fb2954
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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.