summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
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
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 '')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp2
-rw-r--r--src/core/hle/service/am/applet_oe.h4
-rw-r--r--src/core/hle/service/apm/apm.cpp2
-rw-r--r--src/core/hle/service/apm/apm.h4
-rw-r--r--src/core/hle/service/lm/lm.cpp2
-rw-r--r--src/core/hle/service/lm/lm.h4
-rw-r--r--src/core/hle/service/sm/controller.cpp2
-rw-r--r--src/core/hle/service/sm/controller.h4
-rw-r--r--src/core/hle/service/sm/sm.cpp2
-rw-r--r--src/core/hle/service/sm/sm.h4
10 files changed, 10 insertions, 20 deletions
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<AppletOE> {
public:
- explicit AppletOE();
- ~AppletOE();
+ AppletOE();
+ ~AppletOE() = default;
};
} // namespace AM
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.
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);
diff --git a/src/core/hle/service/sm/controller.cpp b/src/core/hle/service/sm/controller.cpp
index 174ee8161..414a7d809 100644
--- a/src/core/hle/service/sm/controller.cpp
+++ b/src/core/hle/service/sm/controller.cpp
@@ -54,7 +54,5 @@ Controller::Controller() : ServiceFramework("IpcController") {
RegisterHandlers(functions);
}
-Controller::~Controller() = default;
-
} // namespace SM
} // namespace Service
diff --git a/src/core/hle/service/sm/controller.h b/src/core/hle/service/sm/controller.h
index bb5a815f8..e68676ab6 100644
--- a/src/core/hle/service/sm/controller.h
+++ b/src/core/hle/service/sm/controller.h
@@ -11,8 +11,8 @@ namespace SM {
class Controller final : public ServiceFramework<Controller> {
public:
- explicit Controller();
- ~Controller();
+ Controller();
+ ~Controller() = default;
private:
void ConvertSessionToDomain(Kernel::HLERequestContext& ctx);
diff --git a/src/core/hle/service/sm/sm.cpp b/src/core/hle/service/sm/sm.cpp
index e77ec8df9..a976385ac 100644
--- a/src/core/hle/service/sm/sm.cpp
+++ b/src/core/hle/service/sm/sm.cpp
@@ -147,7 +147,5 @@ SM::SM(std::shared_ptr<ServiceManager> service_manager)
RegisterHandlers(functions);
}
-SM::~SM() = default;
-
} // namespace SM
} // namespace Service
diff --git a/src/core/hle/service/sm/sm.h b/src/core/hle/service/sm/sm.h
index eb463a656..e43a351b3 100644
--- a/src/core/hle/service/sm/sm.h
+++ b/src/core/hle/service/sm/sm.h
@@ -23,8 +23,8 @@ namespace SM {
/// Interface to "sm:" service
class SM final : public ServiceFramework<SM> {
public:
- explicit SM(std::shared_ptr<ServiceManager> service_manager);
- ~SM();
+ SM(std::shared_ptr<ServiceManager> service_manager);
+ ~SM() = default;
private:
void Initialize(Kernel::HLERequestContext& ctx);