summaryrefslogtreecommitdiff
path: root/src/core/hle/service/lm
diff options
context:
space:
mode:
authorGravatar Lioncash2018-04-19 21:41:44 -0400
committerGravatar Lioncash2018-04-19 22:20:28 -0400
commitccca5e7c2872d477cc7bef73ed141dc093b106ef (patch)
tree17f5db413993ed4a6f1fec0ac27fb20b44328459 /src/core/hle/service/lm
parentMerge pull request #356 from lioncash/shader (diff)
downloadyuzu-ccca5e7c2872d477cc7bef73ed141dc093b106ef.tar.gz
yuzu-ccca5e7c2872d477cc7bef73ed141dc093b106ef.tar.xz
yuzu-ccca5e7c2872d477cc7bef73ed141dc093b106ef.zip
service: Use nested namespace specifiers where applicable
Tidies up namespace declarations
Diffstat (limited to 'src/core/hle/service/lm')
-rw-r--r--src/core/hle/service/lm/lm.cpp6
-rw-r--r--src/core/hle/service/lm/lm.h6
2 files changed, 4 insertions, 8 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp
index b8e53d2c7..b87172dff 100644
--- a/src/core/hle/service/lm/lm.cpp
+++ b/src/core/hle/service/lm/lm.cpp
@@ -9,8 +9,7 @@
9#include "core/hle/kernel/client_session.h" 9#include "core/hle/kernel/client_session.h"
10#include "core/hle/service/lm/lm.h" 10#include "core/hle/service/lm/lm.h"
11 11
12namespace Service { 12namespace Service::LM {
13namespace LM {
14 13
15class Logger final : public ServiceFramework<Logger> { 14class Logger final : public ServiceFramework<Logger> {
16public: 15public:
@@ -189,5 +188,4 @@ LM::LM() : ServiceFramework("lm") {
189 RegisterHandlers(functions); 188 RegisterHandlers(functions);
190} 189}
191 190
192} // namespace LM 191} // namespace Service::LM
193} // namespace Service
diff --git a/src/core/hle/service/lm/lm.h b/src/core/hle/service/lm/lm.h
index 371135057..63d6506fe 100644
--- a/src/core/hle/service/lm/lm.h
+++ b/src/core/hle/service/lm/lm.h
@@ -8,8 +8,7 @@
8#include "core/hle/kernel/kernel.h" 8#include "core/hle/kernel/kernel.h"
9#include "core/hle/service/service.h" 9#include "core/hle/service/service.h"
10 10
11namespace Service { 11namespace Service::LM {
12namespace LM {
13 12
14class LM final : public ServiceFramework<LM> { 13class LM final : public ServiceFramework<LM> {
15public: 14public:
@@ -23,5 +22,4 @@ private:
23/// Registers all LM services with the specified service manager. 22/// Registers all LM services with the specified service manager.
24void InstallInterfaces(SM::ServiceManager& service_manager); 23void InstallInterfaces(SM::ServiceManager& service_manager);
25 24
26} // namespace LM 25} // namespace Service::LM
27} // namespace Service