summaryrefslogtreecommitdiff
path: root/src/core/hle/service/ssl
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/ssl
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/ssl')
-rw-r--r--src/core/hle/service/ssl/ssl.cpp6
-rw-r--r--src/core/hle/service/ssl/ssl.h6
2 files changed, 4 insertions, 8 deletions
diff --git a/src/core/hle/service/ssl/ssl.cpp b/src/core/hle/service/ssl/ssl.cpp
index 01a03ec83..11d438728 100644
--- a/src/core/hle/service/ssl/ssl.cpp
+++ b/src/core/hle/service/ssl/ssl.cpp
@@ -5,8 +5,7 @@
5#include "core/hle/ipc_helpers.h" 5#include "core/hle/ipc_helpers.h"
6#include "core/hle/service/ssl/ssl.h" 6#include "core/hle/service/ssl/ssl.h"
7 7
8namespace Service { 8namespace Service::SSL {
9namespace SSL {
10 9
11class ISslConnection final : public ServiceFramework<ISslConnection> { 10class ISslConnection final : public ServiceFramework<ISslConnection> {
12public: 11public:
@@ -107,5 +106,4 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
107 std::make_shared<SSL>()->InstallAsService(service_manager); 106 std::make_shared<SSL>()->InstallAsService(service_manager);
108} 107}
109 108
110} // namespace SSL 109} // namespace Service::SSL
111} // namespace Service
diff --git a/src/core/hle/service/ssl/ssl.h b/src/core/hle/service/ssl/ssl.h
index 7fcff5ccd..87538a639 100644
--- a/src/core/hle/service/ssl/ssl.h
+++ b/src/core/hle/service/ssl/ssl.h
@@ -6,8 +6,7 @@
6 6
7#include "core/hle/service/service.h" 7#include "core/hle/service/service.h"
8 8
9namespace Service { 9namespace Service::SSL {
10namespace SSL {
11 10
12class SSL final : public ServiceFramework<SSL> { 11class SSL final : public ServiceFramework<SSL> {
13public: 12public:
@@ -21,5 +20,4 @@ private:
21/// Registers all SSL services with the specified service manager. 20/// Registers all SSL services with the specified service manager.
22void InstallInterfaces(SM::ServiceManager& service_manager); 21void InstallInterfaces(SM::ServiceManager& service_manager);
23 22
24} // namespace SSL 23} // namespace Service::SSL
25} // namespace Service