diff options
| author | 2016-12-07 17:04:14 -0500 | |
|---|---|---|
| committer | 2016-12-07 17:04:14 -0500 | |
| commit | 6f71fb2954011c53dbfe1173eea83638c6c8f610 (patch) | |
| tree | d977df52b5036a143fd92f67bebacd05f5e229e5 /src | |
| parent | applet: Make constructor protected (diff) | |
| download | yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar.gz yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar.xz yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.zip | |
applet: Make virtual destructor defaulted
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/applets/applet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/applets/applet.h b/src/core/hle/applets/applet.h index b7594d100..583ddbe10 100644 --- a/src/core/hle/applets/applet.h +++ b/src/core/hle/applets/applet.h | |||
| @@ -13,7 +13,7 @@ namespace Applets { | |||
| 13 | 13 | ||
| 14 | class Applet { | 14 | class Applet { |
| 15 | public: | 15 | public: |
| 16 | virtual ~Applet() {} | 16 | virtual ~Applet() = default; |
| 17 | 17 | ||
| 18 | /** | 18 | /** |
| 19 | * Creates an instance of the Applet subclass identified by the parameter. | 19 | * Creates an instance of the Applet subclass identified by the parameter. |