summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apm
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apm/apm.cpp2
-rw-r--r--src/core/hle/service/apm/apm.h4
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.