service: Use nested namespace specifiers where applicable
There were a few places where nested namespace specifiers weren't being used where they could be within the service code. This amends that to make the namespacing a tiny bit more compact.
This commit is contained in:
parent
80cdfe1c45
commit
46da908a00
221 changed files with 443 additions and 902 deletions
|
@ -18,8 +18,7 @@ namespace AudioCore {
|
|||
enum class DspPipe;
|
||||
}
|
||||
|
||||
namespace Service {
|
||||
namespace DSP {
|
||||
namespace Service::DSP {
|
||||
|
||||
void DSP_DSP::RecvData(Kernel::HLERequestContext& ctx) {
|
||||
IPC::RequestParser rp(ctx, 0x01, 1, 0);
|
||||
|
@ -406,5 +405,4 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
|
|||
Core::DSP().SetServiceToInterrupt(std::move(dsp));
|
||||
}
|
||||
|
||||
} // namespace DSP
|
||||
} // namespace Service
|
||||
} // namespace Service::DSP
|
||||
|
|
|
@ -9,8 +9,7 @@
|
|||
#include "core/hle/result.h"
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
namespace Service {
|
||||
namespace DSP {
|
||||
namespace Service::DSP {
|
||||
|
||||
class DSP_DSP final : public ServiceFramework<DSP_DSP> {
|
||||
public:
|
||||
|
@ -253,5 +252,4 @@ private:
|
|||
|
||||
void InstallInterfaces(SM::ServiceManager& service_manager);
|
||||
|
||||
} // namespace DSP
|
||||
} // namespace Service
|
||||
} // namespace Service::DSP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue