diff options
author | bunnei <bunneidev@gmail.com> | 2018-04-20 15:44:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 15:44:40 +0200 |
commit | b11f6f90e7f0c6f13f3ac28042a6acd17265dea0 (patch) | |
tree | 69298d8974a70abb4c83f4fe044c180b49f7e00d /src/core/hle/service/pctl/pctl.h | |
parent | Merge pull request #364 from lioncash/thread-local (diff) | |
parent | service: Use nested namespace specifiers where applicable (diff) | |
download | yuzu-b11f6f90e7f0c6f13f3ac28042a6acd17265dea0.tar yuzu-b11f6f90e7f0c6f13f3ac28042a6acd17265dea0.tar.gz yuzu-b11f6f90e7f0c6f13f3ac28042a6acd17265dea0.tar.bz2 yuzu-b11f6f90e7f0c6f13f3ac28042a6acd17265dea0.tar.lz yuzu-b11f6f90e7f0c6f13f3ac28042a6acd17265dea0.tar.xz yuzu-b11f6f90e7f0c6f13f3ac28042a6acd17265dea0.tar.zst yuzu-b11f6f90e7f0c6f13f3ac28042a6acd17265dea0.zip |
Diffstat (limited to 'src/core/hle/service/pctl/pctl.h')
-rw-r--r-- | src/core/hle/service/pctl/pctl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/pctl/pctl.h b/src/core/hle/service/pctl/pctl.h index 5fa67dd1b..f0a84b115 100644 --- a/src/core/hle/service/pctl/pctl.h +++ b/src/core/hle/service/pctl/pctl.h @@ -6,11 +6,9 @@ #include "core/hle/service/service.h" -namespace Service { -namespace PCTL { +namespace Service::PCTL { /// Registers all PCTL services with the specified service manager. void InstallInterfaces(SM::ServiceManager& service_manager); -} // namespace PCTL -} // namespace Service +} // namespace Service::PCTL |