diff options
| author | 2018-04-19 21:41:44 -0400 | |
|---|---|---|
| committer | 2018-04-19 22:20:28 -0400 | |
| commit | ccca5e7c2872d477cc7bef73ed141dc093b106ef (patch) | |
| tree | 17f5db413993ed4a6f1fec0ac27fb20b44328459 /src/core/hle/service/aoc | |
| parent | Merge pull request #356 from lioncash/shader (diff) | |
| download | yuzu-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/aoc')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.cpp | 6 | ||||
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.h | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp index f64001df3..6e7438580 100644 --- a/src/core/hle/service/aoc/aoc_u.cpp +++ b/src/core/hle/service/aoc/aoc_u.cpp | |||
| @@ -6,8 +6,7 @@ | |||
| 6 | #include "core/hle/ipc_helpers.h" | 6 | #include "core/hle/ipc_helpers.h" |
| 7 | #include "core/hle/service/aoc/aoc_u.h" | 7 | #include "core/hle/service/aoc/aoc_u.h" |
| 8 | 8 | ||
| 9 | namespace Service { | 9 | namespace Service::AOC { |
| 10 | namespace AOC { | ||
| 11 | 10 | ||
| 12 | AOC_U::AOC_U() : ServiceFramework("aoc:u") { | 11 | AOC_U::AOC_U() : ServiceFramework("aoc:u") { |
| 13 | static const FunctionInfo functions[] = { | 12 | static const FunctionInfo functions[] = { |
| @@ -42,5 +41,4 @@ void InstallInterfaces(SM::ServiceManager& service_manager) { | |||
| 42 | std::make_shared<AOC_U>()->InstallAsService(service_manager); | 41 | std::make_shared<AOC_U>()->InstallAsService(service_manager); |
| 43 | } | 42 | } |
| 44 | 43 | ||
| 45 | } // namespace AOC | 44 | } // namespace Service::AOC |
| 46 | } // namespace Service | ||
diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h index 6e0ba15a5..17d48ef30 100644 --- a/src/core/hle/service/aoc/aoc_u.h +++ b/src/core/hle/service/aoc/aoc_u.h | |||
| @@ -6,8 +6,7 @@ | |||
| 6 | 6 | ||
| 7 | #include "core/hle/service/service.h" | 7 | #include "core/hle/service/service.h" |
| 8 | 8 | ||
| 9 | namespace Service { | 9 | namespace Service::AOC { |
| 10 | namespace AOC { | ||
| 11 | 10 | ||
| 12 | class AOC_U final : public ServiceFramework<AOC_U> { | 11 | class AOC_U final : public ServiceFramework<AOC_U> { |
| 13 | public: | 12 | public: |
| @@ -22,5 +21,4 @@ private: | |||
| 22 | /// Registers all AOC services with the specified service manager. | 21 | /// Registers all AOC services with the specified service manager. |
| 23 | void InstallInterfaces(SM::ServiceManager& service_manager); | 22 | void InstallInterfaces(SM::ServiceManager& service_manager); |
| 24 | 23 | ||
| 25 | } // namespace AOC | 24 | } // namespace Service::AOC |
| 26 | } // namespace Service | ||