From ad073846bce4c372e14e0b2fc827067df0e3e624 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 28 Dec 2017 15:27:30 -0500 Subject: service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor. --- src/core/hle/service/am/applet_oe.cpp | 2 -- src/core/hle/service/am/applet_oe.h | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'src/core/hle/service/am') diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp index a5d80f5c7..cd8901d2f 100644 --- a/src/core/hle/service/am/applet_oe.cpp +++ b/src/core/hle/service/am/applet_oe.cpp @@ -16,7 +16,5 @@ AppletOE::AppletOE() : ServiceFramework("appletOE") { RegisterHandlers(functions); } -AppletOE::~AppletOE() = default; - } // namespace AM } // namespace Service diff --git a/src/core/hle/service/am/applet_oe.h b/src/core/hle/service/am/applet_oe.h index 1385428b1..6e1173f01 100644 --- a/src/core/hle/service/am/applet_oe.h +++ b/src/core/hle/service/am/applet_oe.h @@ -11,8 +11,8 @@ namespace AM { class AppletOE final : public ServiceFramework { public: - explicit AppletOE(); - ~AppletOE(); + AppletOE(); + ~AppletOE() = default; }; } // namespace AM -- cgit v1.2.3