summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sockets/sfdnsres.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/sockets/sfdnsres.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/sockets/sfdnsres.cpp')
-rw-r--r--src/core/hle/service/sockets/sfdnsres.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/sockets/sfdnsres.cpp b/src/core/hle/service/sockets/sfdnsres.cpp
index 633488b18..d235c4cfd 100644
--- a/src/core/hle/service/sockets/sfdnsres.cpp
+++ b/src/core/hle/service/sockets/sfdnsres.cpp
@@ -5,8 +5,7 @@
#include "core/hle/ipc_helpers.h"
#include "core/hle/service/sockets/sfdnsres.h"
-namespace Service {
-namespace Sockets {
+namespace Service::Sockets {
void SFDNSRES::GetAddrInfo(Kernel::HLERequestContext& ctx) {
IPC::RequestParser rp{ctx};
@@ -35,5 +34,4 @@ SFDNSRES::SFDNSRES() : ServiceFramework("sfdnsres") {
RegisterHandlers(functions);
}
-} // namespace Sockets
-} // namespace Service
+} // namespace Service::Sockets