From 6f71fb2954011c53dbfe1173eea83638c6c8f610 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 7 Dec 2016 17:04:14 -0500 Subject: applet: Make virtual destructor defaulted --- src/core/hle/applets/applet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.3