diff options
author | Lioncash <mathew1800@gmail.com> | 2016-12-07 17:04:14 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-12-07 17:04:14 -0500 |
commit | 6f71fb2954011c53dbfe1173eea83638c6c8f610 (patch) | |
tree | d977df52b5036a143fd92f67bebacd05f5e229e5 | |
parent | d3f4fd1777c692702c6f56588c7035dff1c9046c (diff) |
applet: Make virtual destructor defaulted
-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. |