diff options
| author | bunnei <bunneidev@gmail.com> | 2018-04-20 09:44:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-20 09:44:40 -0400 |
| commit | b11f6f90e7f0c6f13f3ac28042a6acd17265dea0 (patch) | |
| tree | 69298d8974a70abb4c83f4fe044c180b49f7e00d /src/core/hle/service/ssl | |
| parent | 4d96997447cad9d236770f930f61d2ed298baeff (diff) | |
| parent | ccca5e7c2872d477cc7bef73ed141dc093b106ef (diff) | |
Merge pull request #360 from lioncash/namespaces
service: Use nested namespace specifiers where applicable
Diffstat (limited to 'src/core/hle/service/ssl')
| -rw-r--r-- | src/core/hle/service/ssl/ssl.cpp | 6 | ||||
| -rw-r--r-- | src/core/hle/service/ssl/ssl.h | 6 |
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 @@ #include "core/hle/ipc_helpers.h" #include "core/hle/service/ssl/ssl.h" -namespace Service { -namespace SSL { +namespace Service::SSL { class ISslConnection final : public ServiceFramework<ISslConnection> { public: @@ -107,5 +106,4 @@ void InstallInterfaces(SM::ServiceManager& service_manager) { std::make_shared<SSL>()->InstallAsService(service_manager); } -} // namespace SSL -} // namespace Service +} // namespace Service::SSL 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 @@ #include "core/hle/service/service.h" -namespace Service { -namespace SSL { +namespace Service::SSL { class SSL final : public ServiceFramework<SSL> { public: @@ -21,5 +20,4 @@ private: /// Registers all SSL services with the specified service manager. void InstallInterfaces(SM::ServiceManager& service_manager); -} // namespace SSL -} // namespace Service +} // namespace Service::SSL |
