From 9e726a9250033f5c8fbddd917c7779b808d99705 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 4 May 2021 04:04:05 -0400 Subject: service: Resolve cases of member field shadowing Now all that remains is for kernel code to be 'shadow-free' and then -Wshadow can be turned into an error. --- src/core/hle/service/bcat/bcat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/hle/service/bcat/bcat.h') diff --git a/src/core/hle/service/bcat/bcat.h b/src/core/hle/service/bcat/bcat.h index 6354465fc..d72798980 100644 --- a/src/core/hle/service/bcat/bcat.h +++ b/src/core/hle/service/bcat/bcat.h @@ -14,8 +14,8 @@ namespace Service::BCAT { class BCAT final : public Module::Interface { public: - explicit BCAT(Core::System& system, std::shared_ptr module, - FileSystem::FileSystemController& fsc, const char* name); + explicit BCAT(Core::System& system_, std::shared_ptr module_, + FileSystem::FileSystemController& fsc_, const char* name_); ~BCAT() override; }; -- cgit v1.2.3