summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lm
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-12-28 21:27:30 +0100
committerbunnei <bunneidev@gmail.com>2017-12-28 21:27:30 +0100
commitad073846bce4c372e14e0b2fc827067df0e3e624 (patch)
tree62142a868d547acbc855ed8937dfffdcc09a5891 /src/core/hle/service/lm
parentservice: Halt on ReportUnimplementedFunction and improve output log. (diff)
downloadyuzu-ad073846bce4c372e14e0b2fc827067df0e3e624.tar
yuzu-ad073846bce4c372e14e0b2fc827067df0e3e624.tar.gz
yuzu-ad073846bce4c372e14e0b2fc827067df0e3e624.tar.bz2
yuzu-ad073846bce4c372e14e0b2fc827067df0e3e624.tar.lz
yuzu-ad073846bce4c372e14e0b2fc827067df0e3e624.tar.xz
yuzu-ad073846bce4c372e14e0b2fc827067df0e3e624.tar.zst
yuzu-ad073846bce4c372e14e0b2fc827067df0e3e624.zip
Diffstat (limited to 'src/core/hle/service/lm')
-rw-r--r--src/core/hle/service/lm/lm.cpp2
-rw-r--r--src/core/hle/service/lm/lm.h4
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);