diff options
| author | 2021-05-04 04:04:05 -0400 | |
|---|---|---|
| committer | 2021-05-04 04:38:38 -0400 | |
| commit | 9e726a9250033f5c8fbddd917c7779b808d99705 (patch) | |
| tree | 587ac77fbf0c4aa24c80710c802385bc4ac9b4d6 /src/core/hle/service/grc | |
| parent | Merge pull request #6278 from lioncash/misc-shadow (diff) | |
| download | yuzu-9e726a9250033f5c8fbddd917c7779b808d99705.tar.gz yuzu-9e726a9250033f5c8fbddd917c7779b808d99705.tar.xz yuzu-9e726a9250033f5c8fbddd917c7779b808d99705.zip | |
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')
| -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 { | |||
| 12 | 12 | ||
| 13 | class GRC final : public ServiceFramework<GRC> { | 13 | class GRC final : public ServiceFramework<GRC> { |
| 14 | public: | 14 | public: |
| 15 | explicit GRC(Core::System& system) : ServiceFramework{system, "grc:c"} { | 15 | explicit GRC(Core::System& system_) : ServiceFramework{system_, "grc:c"} { |
| 16 | // clang-format off | 16 | // clang-format off |
| 17 | static const FunctionInfo functions[] = { | 17 | static const FunctionInfo functions[] = { |
| 18 | {1, nullptr, "OpenContinuousRecorder"}, | 18 | {1, nullptr, "OpenContinuousRecorder"}, |