summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-20 15:44:40 +0200
committerGitHub <noreply@github.com>2018-04-20 15:44:40 +0200
commitb11f6f90e7f0c6f13f3ac28042a6acd17265dea0 (patch)
tree69298d8974a70abb4c83f4fe044c180b49f7e00d /src/core/hle/service/vi/vi.cpp
parentMerge pull request #364 from lioncash/thread-local (diff)
parentservice: Use nested namespace specifiers where applicable (diff)
downloadyuzu-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/vi/vi.cpp')
-rw-r--r--src/core/hle/service/vi/vi.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index b712daa2b..b697b5f73 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -21,8 +21,7 @@
#include "video_core/renderer_base.h"
#include "video_core/video_core.h"
-namespace Service {
-namespace VI {
+namespace Service::VI {
struct DisplayInfo {
char display_name[0x40]{"Default"};
@@ -963,5 +962,4 @@ void InstallInterfaces(SM::ServiceManager& service_manager,
std::make_shared<VI_U>(module, nv_flinger)->InstallAsService(service_manager);
}
-} // namespace VI
-} // namespace Service
+} // namespace Service::VI