diff options
Diffstat (limited to 'src/core/hle/service/lm')
-rw-r--r-- | src/core/hle/service/lm/lm.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/lm/lm.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp index 72fa6db6b..210c1958e 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp @@ -92,7 +92,5 @@ LM::LM() : ServiceFramework("lm") { RegisterHandlers(functions); } -LM::~LM() = default; - } // namespace LM } // namespace Service diff --git a/src/core/hle/service/lm/lm.h b/src/core/hle/service/lm/lm.h index 05a92f712..a86798f19 100644 --- a/src/core/hle/service/lm/lm.h +++ b/src/core/hle/service/lm/lm.h @@ -14,8 +14,8 @@ namespace LM { class LM final : public ServiceFramework<LM> { public: - explicit LM(); - ~LM(); + LM(); + ~LM() = default; private: void Initialize(Kernel::HLERequestContext& ctx); |