hle/service: Remove unnecessary using declarations

Only one usage of the specified objects made use of the lack of
namespacing. Given the low usage, we can just remove these.
pull/8/head
Lioncash 7 years ago
parent d8625f5544
commit 9f56477539

@ -70,10 +70,6 @@
#include "core/hle/service/vi/vi.h"
#include "core/hle/service/wlan/wlan.h"
using Kernel::ClientPort;
using Kernel::ServerPort;
using Kernel::SharedPtr;
namespace Service {
/**
@ -111,7 +107,7 @@ void ServiceFrameworkBase::InstallAsNamedPort() {
auto& kernel = Core::System::GetInstance().Kernel();
auto [server_port, client_port] =
ServerPort::CreatePortPair(kernel, max_sessions, service_name);
Kernel::ServerPort::CreatePortPair(kernel, max_sessions, service_name);
server_port->SetHleHandler(shared_from_this());
kernel.AddNamedPort(service_name, std::move(client_port));
}

Loading…
Cancel
Save