diff options
author | Lioncash <mathew1800@gmail.com> | 2016-12-07 23:04:14 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-12-07 23:04:14 +0100 |
commit | 6f71fb2954011c53dbfe1173eea83638c6c8f610 (patch) | |
tree | d977df52b5036a143fd92f67bebacd05f5e229e5 /src/core/hle | |
parent | applet: Make constructor protected (diff) | |
download | yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar.gz yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar.bz2 yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar.lz yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar.xz yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.tar.zst yuzu-6f71fb2954011c53dbfe1173eea83638c6c8f610.zip |
Diffstat (limited to 'src/core/hle')
-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 { class Applet { public: - virtual ~Applet() {} + virtual ~Applet() = default; /** * Creates an instance of the Applet subclass identified by the parameter. |