diff options
| author | Lioncash <mathew1800@gmail.com> | 2021-05-04 04:04:05 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2021-05-04 04:38:38 -0400 |
| commit | 9e726a9250033f5c8fbddd917c7779b808d99705 (patch) | |
| tree | 587ac77fbf0c4aa24c80710c802385bc4ac9b4d6 /src/core/hle/service/grc/grc.cpp | |
| parent | df51eb9bdec5be189e0662ab81bc29277f3da343 (diff) | |
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.
Diffstat (limited to 'src/core/hle/service/grc/grc.cpp')
| -rw-r--r-- | src/core/hle/service/grc/grc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/grc/grc.cpp b/src/core/hle/service/grc/grc.cpp index a502ab47f..f918bdf03 100644 --- a/src/core/hle/service/grc/grc.cpp +++ b/src/core/hle/service/grc/grc.cpp @@ -12,7 +12,7 @@ namespace Service::GRC { class GRC final : public ServiceFramework<GRC> { public: - explicit GRC(Core::System& system) : ServiceFramework{system, "grc:c"} { + explicit GRC(Core::System& system_) : ServiceFramework{system_, "grc:c"} { // clang-format off static const FunctionInfo functions[] = { {1, nullptr, "OpenContinuousRecorder"}, |
