summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-07 23:04:14 +0100
committerLioncash <mathew1800@gmail.com>2016-12-07 23:04:14 +0100
commit6f71fb2954011c53dbfe1173eea83638c6c8f610 (patch)
treed977df52b5036a143fd92f67bebacd05f5e229e5
parentapplet: Make constructor protected (diff)
downloadyuzu-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
-rw-r--r--src/core/hle/applets/applet.h2
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.