summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2016-12-07 17:04:14 -0500
committerGravatar Lioncash2016-12-07 17:04:14 -0500
commit6f71fb2954011c53dbfe1173eea83638c6c8f610 (patch)
treed977df52b5036a143fd92f67bebacd05f5e229e5 /src
parentapplet: Make constructor protected (diff)
downloadyuzu-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.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 {
13 13
14class Applet { 14class Applet {
15public: 15public:
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.