diff options
| author | bunnei <bunneidev@gmail.com> | 2017-12-28 15:27:30 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2017-12-28 15:27:30 -0500 |
| commit | ad073846bce4c372e14e0b2fc827067df0e3e624 (patch) | |
| tree | 62142a868d547acbc855ed8937dfffdcc09a5891 /src/core/hle/service/apm | |
| parent | 16fb1c8fe75338ef9848d9ed75247c3b869bea57 (diff) | |
service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.
Diffstat (limited to 'src/core/hle/service/apm')
| -rw-r--r-- | src/core/hle/service/apm/apm.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/apm/apm.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/apm/apm.cpp b/src/core/hle/service/apm/apm.cpp index 37b5bd647..3cb7d5861 100644 --- a/src/core/hle/service/apm/apm.cpp +++ b/src/core/hle/service/apm/apm.cpp @@ -21,7 +21,5 @@ APM::APM() : ServiceFramework("apm") { RegisterHandlers(functions); } -APM::~APM() = default; - } // namespace APM } // namespace Service diff --git a/src/core/hle/service/apm/apm.h b/src/core/hle/service/apm/apm.h index ce6ac0f66..58472e189 100644 --- a/src/core/hle/service/apm/apm.h +++ b/src/core/hle/service/apm/apm.h @@ -11,8 +11,8 @@ namespace APM { class APM final : public ServiceFramework<APM> { public: - explicit APM(); - ~APM(); + APM(); + ~APM() = default; }; /// Registers all AM services with the specified service manager. |
