mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 18:05:46 +00:00
service: Use nested namespace specifiers where applicable
Tidies up namespace declarations
This commit is contained in:
parent
fd50308f39
commit
6d94dd21a5
136 changed files with 273 additions and 570 deletions
|
@ -7,8 +7,7 @@
|
|||
#include "core/hle/service/nfp/nfp.h"
|
||||
#include "core/hle/service/nfp/nfp_user.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NFP {
|
||||
namespace Service::NFP {
|
||||
|
||||
Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
|
||||
: ServiceFramework(name), module(std::move(module)) {}
|
||||
|
@ -24,5 +23,4 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|||
std::make_shared<NFP_User>(module)->InstallAsService(service_manager);
|
||||
}
|
||||
|
||||
} // namespace NFP
|
||||
} // namespace Service
|
||||
} // namespace Service::NFP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue