소스 검색

applet: Make virtual destructor defaulted

Lioncash 9 년 전
부모
커밋
6f71fb2954
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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.