core: Make variable shadowing a compile-time error
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
This commit is contained in:
parent
37e988258a
commit
eeae5217ba
99 changed files with 304 additions and 279 deletions
|
@ -192,7 +192,7 @@ json GetHLERequestContextData(Kernel::HLERequestContext& ctx, Core::Memory::Memo
|
|||
|
||||
namespace Core {
|
||||
|
||||
Reporter::Reporter(System& system) : system(system) {}
|
||||
Reporter::Reporter(System& system_) : system(system_) {}
|
||||
|
||||
Reporter::~Reporter() = default;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue